IntelliType causing of accident weird when using media keys

I recently installed a new hard drive in my PC, put a new copy of Windows XP on it and began to reinstall the programs and drivers, including Intellitype for my Microsoft Wireless Laser Desktop 4000.  Tonight is the first time I tried to use the media keys to control iTunes.  About one in every five times I press play/pause or change lanes, Firefox crashes, sometimes with an error this plugin-container to close.  Initially, I tried troubleshooting it as a problem of Firefox and found that despite crushing, Firefox was not generate incident reports.

Finally, I played with him and tested things, it became clear that this is not just cause problems with Firefox.  More than once, the multimedia keys caused iTunes crash as well, sometimes at the same time as Firefox (although that Firefox is left open during a crash of iTunes).  Once, when I was changing songs in iTunes with closed Firefox, Explorer crashed.  And I got several error messages Intellitype had to close.  Even though I had given up on troubleshooting earlier and resigned myself to not being able to use my media keys, I got an error Intellitype pop up more than ten minutes later.

I tried to uninstall and reinstall Intellitype and that seems to fix the problem (and prompted me to remove the question I asked here earlier this evening), once I let my guard and started to use the multimedia keys as usual once again, I started having crashes again.

What was particularly frustrating is that I never had a problem like this on my old hard drive (or the laptop I have installed Intellitype on), and I checked each configuration I can think about the way I have my old hard drive put in place (still have not finished passing my stuff so I can format, so I still have my old installation of Windows) , and I could not find significant difference that could explain this, especially in my Firefox plugins.

I am really at a loss what to try next on this question, so any help would be greatly appreciated.

Go HERE and follow the troubleshooting steps

Tags: Windows

Similar Questions

  • dbms_crypto - avoid error when using different key in lower environment

    Hello Experts,

    We use Oracle 11.2.0.2. We intend to implement dbms_crypto to encrypt some columns. Clone us the production data at the lower environment (DEV, QC).

    The lowest environments, we do not want to obtain the sensitive data from production and do not plan to use the same key. Instead of getting an error when using different keys, is it possible to get a different set of results.

    In other words, we want the implementation will be same in environments but use a different key in lower environment and obtain different results (or garbage).

    Any suggestions would be greatly appreciated.

    The test of this logic, I get following error when using the different keys to decrypt. It works fine if I use the same key.
    Error on line 1
    ORA-28817: PL/SQL function has returned an error.
    ORA-06512: at "SYS." DBMS_CRYPTO_FFI', line 67
    ORA-06512: at "SYS." DBMS_CRYPTO", line 44
    ORA-06512: at line 19
    DECLARE
      l_credit_card_no    VARCHAR2(19) := '1234 5678 9012 3456';
      l_ccn_raw           RAW(128) := UTL_RAW.cast_to_raw(l_credit_card_no);
     
     l_key               RAW(128) := UTL_RAW.cast_to_raw('abcdefgh');
       l2_key               RAW(128) := UTL_RAW.cast_to_raw('12345678');
    
      l_encrypted_raw     RAW(2048);
      l_decrypted_raw     RAW(2048);
    BEGIN
      DBMS_OUTPUT.put_line('Original  : ' || l_credit_card_no);
    
      l_encrypted_raw := DBMS_CRYPTO.encrypt(src => l_ccn_raw, 
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5, 
                                             key => l_key);
    
      DBMS_OUTPUT.put_line('Encrypted : ' || RAWTOHEX(UTL_RAW.cast_to_raw(l_encrypted_raw)));
    
      l_decrypted_raw := DBMS_CRYPTO.decrypt(src => l_encrypted_raw, 
                                             typ => DBMS_CRYPTO.des_cbc_pkcs5, 
                                             key => l2_key); --**Using different key to decrypt
    
      DBMS_OUTPUT.put_line('Decrypted : ' || UTL_RAW.cast_to_varchar2(l_decrypted_raw));
    END;
    Thank you.

    In general, you can't get different results in different environments, no.

    Of course, you could write your routine to decrypt so that it intercepts it and returns a random string of RAW.

    However, this is not normally the way people go on hiding sensitive data in environments below. It would be much more common to use a tool that is designed for this tool. For example, Oracle has a Pack of masking of data for Enterprise Manager that allows to replace sensitive data with false, but realistic data as part of the updating of the environments below. There are also data from third-party tools like masqueur datamasking.

    Justin

  • AF:inputListOfValues sets the value of the first item in the result set when using enter key or tab and component value autosubmit = true

    I use JDev 11.1.1.6 and when I type in a value in an af:inputListOfValues element and press enter or the tab key, it will replace the value I entered with the first element in the set of results LOV. If enter a value, simply click on the component af:inputListOfValues it works correctly. If I use the popup and find a value it works properly as well. I have a programmatic view object that contains a single transitional attribute (this is the view object that is used to create the list of the components of the value of) and then I have another object from view based on entities which defines one of its attributes in a list of the attribute value. I tried to use a base object view of entity to create the LOV to and everything works as expected, so I don't know if this is a bug when using programmatic view objects or if I need more code in the VOImpl. In addition, it seems after that first of the value being replaced by the first value in the result set that it will work correctly as well. Here are some excerpts of important code.

    Also, it seems that this does not work only if the text entered in the component af:inputListOfValues would have only a single game, returned in the result set. For example, given the result defined in code: Brad, Adam, Aaron, Fred, Charles, Charlie, Jimmy

    If we get into Cha, the component works as expected

    If we register A, the component works as expected

    If we get Jimmy, the component does not work as expected, and returns the first value of results IE. Brad

    If we get Fred, the component does not work as expected, and returns the first value of results IE. Brad

    I also checked that I get the same behavior in JDev 11.1.1.7

    UsersVOImpl (programmatic view with 1 transitional attribute object)

    import java.sql.ResultSet;
    
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    
    import oracle.adf.share.logging.ADFLogger;
    
    import oracle.jbo.JboException;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.server.ViewRowImpl;
    import oracle.jbo.server.ViewRowSetImpl;
    
    // ---------------------------------------------------------------------
    // ---    File generated by Oracle ADF Business Components Design Time.
    // ---    Wed Sep 18 15:59:44 CDT 2013
    // ---    Custom code may be added to this class.
    // ---    Warning: Do not modify method signatures of generated methods.
    // ---------------------------------------------------------------------
    
    public class UsersVOImpl extends ViewObjectImpl {
    
        private static ADFLogger LOGGER = ADFLogger.createADFLogger(UsersVOImpl.class);
        private long hitCount = 0;
    
        /**
         * This is the default constructor (do not remove).
         */
        public UsersVOImpl () {
        }
    
        /**
         * executeQueryForCollection - overridden for custom java data source support.
         */
        protected void executeQueryForCollection (Object qc, Object[] params, int noUserParams) {
    
             List<String> usersList = new ArrayList<String>();
             usersList.add("Brad");
             usersList.add("Adam");
             usersList.add("Aaron");
             usersList.add("Fred");
             usersList.add("Charles");
             usersList.add("Charlie");
             usersList.add("Jimmy");
    
             Iterator usersIterator = usersList.iterator();
             setUserDataForCollection(qc, usersIterator);
             hitCount = usersList.size();
             super.executeQueryForCollection(qc, params, noUserParams);
    
        } // end executeQueryForCollection
    
        /**
         * hasNextForCollection - overridden for custom java data source support.
         */
        protected boolean hasNextForCollection (Object qc) {
    
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             if (usersListIterator.hasNext()) {
         
                 return true;
    
             } else {
    
                 setFetchCompleteForCollection(qc, true);
                 return false;
    
             } // end if
    
        } // end hasNextForCollection
    
        /**
         * createRowFromResultSet - overridden for custom java data source support.
         */
        protected ViewRowImpl createRowFromResultSet (Object qc, ResultSet resultSet) {
    
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             String user = (String)usersListIterator.next();
             ViewRowImpl viewRowImpl = createNewRowForCollection(qc);
    
             try {
    
                 populateAttributeForRow(viewRowImpl, 0, user.toString());
    
             } catch (Exception e) {
    
                 LOGGER.severe("Error Initializing Data", e);
                 throw new JboException(e);
    
             } // end try/catch
    
             return viewRowImpl;
    
        } // end createRowFromResultSet
    
        /**
         * getQueryHitCount - overridden for custom java data source support.
         */
        public long getQueryHitCount (ViewRowSetImpl viewRowSet) {
             return hitCount;
        } // end getQueryHitCount
    
        @Override
        protected void create () {
    
             getViewDef().setQuery(null);
             getViewDef().setSelectClause(null);
             setQuery(null);
    
        } // end create
    
        @Override
        protected void releaseUserDataForCollection (Object qc, Object rs) {
    
             Iterator usersListIterator = (Iterator)getUserDataForCollection(qc);
             usersListIterator = null;
             super.releaseUserDataForCollection(qc, rs);
    
        } // end releaseUserDataForCollection
    
    } // end class
    
    

    <af:inputListOfValues id="userName" popupTitle="Search and Select: #{bindings.UserName.hints.label}" value="#{bindings.UserName.inputValue}"
                                                  label="#{bindings.UserName.hints.label}" model="#{bindings.UserName.listOfValuesModel}" required="#{bindings.UserName.hints.mandatory}"
                                                  columns="#{bindings.UserName.hints.displayWidth}" shortDesc="#{bindings.UserName.hints.tooltip}" autoSubmit="true"
                                                  searchDesc="#{bindings.UserName.hints.tooltip}"                                           
                                                  simple="true">
                              <f:validator binding="#{bindings.UserName.validator}"/>                       
    </af:inputListOfValues>
    
    
    
    

    I found a solution to this problem. It seems that, when using a view object programmatic that has a transient as its primary key attribute, you need to override the methods in the ViewObjectImpl so that he knows how to locate the line related to the primary key when the view object records are not in the cache. That's why it would work properly sometimes, but not always. Here are the additional methods that you must override. The logic you use in the retrieveByKey would be on a view view object database object and would be different if you had a primary key consisting of multiple attributes.

    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i) {
        return retrieveByKey(viewRowSetImpl, null, key, i, false);
    }
    
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, String string, Key key, int i, boolean b) {
    
        RowSetIterator usersRowSetIterator = this.createRowSet(null);
        Row[] userRows = usersRowSetIterator.getFilteredRows("UserId", key.getAttribute(this.getAttributeIndexOf("UserId")));
        usersRowSetIterator.closeRowSetIterator();
        return userRows;
    
    }
    
    @Override
    protected Row[] retrieveByKey (ViewRowSetImpl viewRowSetImpl, Key key, int i, boolean b) {
        return retrieveByKey(viewRowSetImpl, null, key, i, b);
    }
    
  • When using Media Player Classic, can not find DVD

    When I try to play a dvd with media player classic, I got an error message saying cannot find DVD

    Hello yoyo2,.

    1. you have the same problem when you try to open the files with Windows Media Player?

    2. does this problem occurs during playback all DVD with Media Player classic or any particular DVD?

    This problem can be caused if the Media Player classic is able to play the DVD and does not support the file on the DVD format. Check the format of the files you are trying to play on the DVD, because it might have associated with missing codecs in Media Player Classic. Also, let us know if you have the same problem with Windows Media Player.

    Thank you
    Irfan H, Engineer Support Microsoft Answers. Visit our Microsoft answers feedback Forum and let us know what you think.

  • [ACCIDENT] Crash when using ' equal to ' function of the String class

    When I use "equal to" function of the String class to compare 2 channels, the app will crash.

    Examples: pn_infopush.equals (PN_INFO_TIMER)

    I have to use "is" instead of "equal". The application will run normarly

    Does anyone have any idea who? I don't understand why.

    Thanks for your support!

    Hello

    Is there a chance that your variable can get a null value?

    Calling .equals not a null object can cause this.

    What type of exception you get? Can you provide a stacktrace?

  • Accel GPU with GEForce 9800 GTX + causes the flicker annoying when using crop Overlay, apply adjustments

    From 6.0.1 whenever I go in or out crop Overlay, the area of the entire image flashes white - that is to say the image disappears to be replaced by a full white space for about 1/5 of a second.

    This happens 100% of the time and is intensely dissonant and extremely boring.

    There is also a momentary flicker a bit more subtle when you apply the settings of exhibition/hilight/shadow/white/black.  It appears the image for a few seconds (once again, about 1/5th of a second) goes back to its base state before ANY adjustments were applied and is then updated to reflect the current state of adjustment.  Happening all the time, but enough to be annoying.

    These artifacts go away if I disable the GPU acceleration . ... what I've done so far.

    System information:

    Lightroom version: 6.0.1 [1018573]

    License: Perpetual

    Operating system: Windows 7 Enterprise edition

    Version: 6.1 [7601]

    Application architecture: x 64

    System architecture: x 64

    Number of logical processors: 8

    Processor speed: 3.9 GHz

    Built-in memory: 16325,5 MB

    Real memory for Lightroom: 16325,5 MB

    Real memory used by Lightroom: 1778,0 MB (10.8%)

    Virtual memory used by Lightroom: 1821,2 MB

    Memory cache size: 0.0 MB

    Maximum thread count used by Camera Raw: 4

    Camera Raw SIMD optimization: SSE2, AVX, AVX2

    System DPI setting: 96 DPI

    Composition of the Bureau enabled: Yes

    Exhibition: 1) 1920 x 1200

    Entry types: Multitouch: no, built-in touch: no, built-in pen: Yes, touch external: no, external pen: Yes, keyboard: No.

    Graphic processor News:

    GeForce 9800 GTX + / PCIe/SSE2

    Check the supported OpenGL: past

    Provider: NVIDIA Corporation

    Version: 3.3.0

    Rendering engine: GeForce 9800 GTX + / PCIe/SSE2

    LanguageVersion: 3,30 NVIDIA via the Cg compiler

    The application folder: C:\Program Files\Adobe\Adobe Lightroom

    Library path: D:\Photo\Catalog\master.lrcat

    Settings folder: C:\Users\jim\AppData\Roaming\Adobe\Lightroom

    Plugins installed:

    (1) Behance

    (2) substantive canon Plugin

    3) export to Photomatix Pro

    (4) Facebook

    (5) Flickr

    (6) home Plugin Leica

    (7) attachment Plugin Nikon

    Config.LUA flags: None

    Update Kit: Adobe Camera Raw to Lightroom 6.0 9.0 (build 1014445)

    Update Toolkit: book Module 6.0 (build 1014445)

    Update Kit: develop Module 6.0 (build 1014445)

    Toolbox update: Import Module 6.0 (build 1014445)

    Updated Toolkit: library Module 6.0 (build 1014445)

    Update Kit: Card Module 6.0 (build 1014445)

    Update Toolkit: monitor Module 6.0 (build 1014445)

    Update Toolkit: print Module 6.0 (build 1014445)

    Update Toolkit: Slideshow Module 6.0 (build 1014445)

    Toolbox update: Module Web 6.0 (build 1014445)

    Update Kit: com.adobe.ag.AgNetClient 6.0 (build 1014445)

    Update Kit: com.adobe.ag.AgWFBridge 6.0 (build 1014445)

    Update Kit: com.adobe.ag.Headlights 6.0 (build 1014445)

    Update Kit: com.adobe.ag.LibraryToolkit 6.0 (build 1014445)

    Update Kit: com.adobe.ag.MultiMonitorToolkit 6.0 (build 1014445)

    Update Kit: com.adobe.ag.archiving_toolkit 6.0 (build 1014445)

    Update Kit: com.adobe.ag.bridgetalk 6.0 (build 1014445)

    Update Kit: com.adobe.ag.catalogconverters 6.0 (build 1014445)

    Update Kit: com.adobe.ag.cef_toolkit 6.0 (build 1014445)

    Update Kit: com.adobe.ag.coretech_toolkit 6.0 (build 1014445)

    Update Kit: com.adobe.ag.curculio 6.0 (build 1014445)

    Update Kit: com.adobe.ag.discburning 6.0 (build 1014445)

    Update Kit: com.adobe.ag.email 6.0 (build 1014445)

    Update Kit: com.adobe.ag.export 6.0 (build 1014445)

    Update Kit: com.adobe.ag.ftpclient 6.0 (build 1014445)

    Update Kit: com.adobe.ag.help 6.0 (build 1014445)

    Update Kit: com.adobe.ag.iac 6.0 (build 1014445)

    Update Kit: com.adobe.ag.imageanalysis 6.0 (build 1014445)

    Update Kit: com.adobe.ag.layout_module_shared 6.0 (build 1014445)

    Update Kit: com.adobe.ag.pdf_toolkit 6.0 (build 1014445)

    Update Kit: com.adobe.ag.sdk 6.0 (build 1014445)

    Update Kit: com.adobe.ag.sec 6.0 (build 1014445)

    Update Kit: com.adobe.ag.socket 6.0 (build 1014445)

    Update Kit: com.adobe.ag.store_provider 6.0 (build 1014445)

    Update Kit: com.adobe.ag.substrate 6.0 (build 1014445)

    Update Kit: com.adobe.ag.ui 6.0 (build 1014445)

    Update Kit: com.adobe.ag.video_toolkit 6.0 (build 1014445)

    Update Kit: com.adobe.ag.xml 6.0 (build 1014445)

    Update Kit: com.adobe.wichitafoundation 6.0 (build 1014445)

    Map #1: Seller: 10de

    Feature: 613

    Subsystem: c8793842

    Review: a2

    Video memory: 487

    AudioDeviceIOBlockSize: 1024

    AudioDeviceName: Speakers (Realtek High Definition Audio)

    AudioDeviceNumberOfChannels: 2

    AudioDeviceSampleRate: 44100

    Build: LR5x102

    Direct2DEnabled: false

    GPUDevice: not available

    OGLEnabled: true

    There are problems with the GPU acceleration at the moment. It seems clear that Adobe do not test it with a wide range of different graphics cards. The GPU performance gain which is called is mainly for those who have Mac computers with retina display high resolution. It seems that it will take some time to solve some of these other issues. In the meantime, let disabled GPU acceleration if it offers better performance.

  • Satellite U400-10J - notification constant if I use media keys

    Hello!

    My problem is that whenever I press one of the configurable media buttons above the keyboard (i.e. the one with the "speaker" or media player icon icon), UAC Windows pops up with a window saying "want allow you the following program to make changes to this computer?
    The program called Toshiba set assignment button's path is "C:\Program File\Toshiba\TBS]TBSBtnCfg.exe" 2 (or 1, depending on the key).
    At the first use, said program asked me what I want the buttons to do, now, if I answer Yes to the prompt, it fills the configured function (one button is set to turn, the other to launch Media Player Classic), however, it is extremely annoying to have to confirm each time.

    Is there a way around it? I'd rather not turn off UAC if possible.

    Toshiba value added Package is the latest version available on the Toshiba site for my model (downloaded today), BIOS is the latest version, Windows is Windows7 RC build 7100, 32-bit, with all available updates. The laptop model is written in the title.

    Hi costi_1

    It's really strange. I m also using Windows 7 but I never had such a message.

    > Windows is Windows7 RC build 7100
    I'm a little confused about this Mr. why you use Windows 7 RC if the final version is already out? I m using the final version of Windows 7 and VAP newer Toshiba page and everything works fine.

    Can you please test it with the final version of Windows 7?

  • Error when using product key "its product key cannot be used to install a version of window" 8

    Original title: Windows ISO file.

    Hai,

    I have a computer Dell laptop with windows pre-installed 8, and I want to do a clean install due to some problems. I downloaded the windows in order to get the iso file from this link; http://Windows.Microsoft.com/en-us/Windows-8/upgrade-product-key-only

    But when I launch the series to the top and entered the product key, notice presented themselves: this product key cannot be used to install a version 8 window retail.

    So, could you help me to advise where I can get the iso file?

    Thanks in advance!

    Hello

    Computers production come with a manufacturer OEM check so with Dell technical support, their line of license
    documentation and ask in their forums.

    How to restore or reinstall Microsoft Windows on a Dell computer
    http://www.Dell.com/support/article/us/en/04/DSN_347576/en

    Dell support
    http://support.Dell.com/

    Dell support drivers - product manual & warranty Info (left side) - and much more
    http://support.Dell.com/support/index.aspx?c=us&l=en&s=DHS

    Dell forums
    http://en.community.Dell.com/forums/

    Dell PC Diagnostics
    http://www.Dell.com/support/Diagnostics/us/en/19/

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • Keyboard type numbers instead of letters when using certain keys

    original title: NEED HE3 * 5T5TH 2EYS

    CAN N6T TY * E 5 LACK. THE N40BERSEE * 2EE * SH6W5NG 4 *.

    Looks like you have a laptop with the numlock. several letter keys are your keypad.

    for example.
    j = 1, k = 2, l = 3, u = 4 I = 5, o = 6, p = *.
    turn off the Numlock.
  • OfficeJet Pro 8600: Officejet Pro 8600 leaves black lines on docs scanned when using the document feeder

    This is the second HP Officejet Pro 8600 I had - one was replaced by HP, after that the same issue arose.  I tried to clean the entire unit, but we still get a thin black line running vertically down the page.  This line is divided into sections of 1 "and 2.5" in length.  Sometimes I get the fine line and then almost a shadow line that is parallel.

    Any suggestions would be very appreciated I have scan documents to PDF format and it's hassle to put everyone on the flat for scanning.  I use the charger of the doc on a daily basis and wonder if this could have something to do with the lines.

    Thanks for any help.

    The question is a spec on thin (~ 1 "wide) glass to the left of the main bed scanner.  Clean this area as described in this document.  It can be difficult to see the affected area, a bright flashlight which is held at an angle to the glass can help find the place.  Even a very small spec on the glass can cause a black line when using the ADF.

  • Can I use media for Winamp on my Satellite A100 buttons?

    Hello!

    is it possible, that I can use media keys (play, stop, next, prior,...) also for other players except the windows media or winamp player?
    I have the Satellite A100 - 188.

    THX!
    Dave

    Hello

    Bad news: configuration is not possible. Sorry!

  • When I try to use Media player 11 or try to use live food of internet radio, I get nothing. When I search through the settings, I met a screen that says "no audio device".

    Original title: ideas: insert an error code or give a brief description of what you're trying to accomplish or difficult. _

    When I try to use Media player 11 or try to use live food of internet radio, I get nothing.  When I search through the settings, I met a screen that say, 'no audio device '.  I tried to update my card sound and nothing.

    Your help will be greatly appreciated.  If so, ask me questions and I will answer.

    Gary kenny

    theflyingelk

    (Number removed for privacy)

    (Email removed for privacy)

    Hi gary kenny,.
    1. when the question is is produced?
    2. the issue of 'No audio' intervene on other applications as well?
    3. What is the brand and model of your computer?
     
    Follow the steps and check if they help.
     
    Step 1:
     
    If you have HP and Compaq Windows XP computers, you can follow the steps mentioned in the article.
     
     
    Step 2:
     
    Or, you can uninstall and reinstall the sound drivers.
     
    a. click on START
    b. click Control Panel.
     
    You should have a few icons to come.
    If you do not, you must make sure that you have enabled the classic view.
     
    Locate the control panel option, it will be on the left side.
    Once activated the classic view
     
    Follow the rest of my instructions.
     
    c. click Device Manager
    d. sounds > search for your sound card (if you are not sure that your sound card is, post options and I'll tell you that one.)
    e. Note description brand / model, double-click on it, go to the tab drivers, note the version.
    f. make a right click on it and UNINSTALL it and restart the computer it will rebuild the driver stack.
    g. go to the manufacturers website and find the latest driver for your card download. (You must know the name of the sound card, if you wrote down from the above info), when you find it download: SAVE IT DO NOT HIT RUN (save it on your desktop for easy access.
    h. open the file that you have saved and right-click on it and select RUN AS ADMINISTRATOR(Now install it.). REBOOT after each installation of driver.
     
    Step 3:
     
    Sound drivers often rollback, so check that the version you just installed is always there. If not, the driver to keep until it sticks, it really shouldn't take more than three times

    Aziz Nadeem - Microsoft Support

    [If this post was helpful, please click the button "Vote as helpful" (green triangle). If it can help solve your problem, click on the button 'Propose as answer' or 'mark as answer '. [By proposing / marking a post as answer or useful you help others find the answer more quickly.]

  • No sound when I watch the movie using Media player.

    When I try to play a dvd on media player there is no sound.  I can play music on media player without problem. Play a movie and no sound.  I have DVD kantaris (as media player I think) don't have to be here: no sound. Kantaris has worked to play DVDs and just stopped today.  Media Player has had no noise for a long time during playback of movies only. I use media player for any music I want and the sound is fine. I checked the volume and audio settings. I can hear sound on you tube and watch movie trailers of movies, etc..
    Help, please!
    Thank you

    Please install the last Audio codec.

    Click on the link below:

    http://www.free-codecs.com/download/K_lite_codec_pack.htm

    MD MOEEN AJAZ KHAN - MCP, N +, A +.

  • When I keyin information of track using Media Player, is this info inserted in the file itself, or only in the index Media Player?

    Original title: metadata key - music

    My question is actually very specific: when I keyin track using Media Player Info, is this info inserted in the file itself, or only in the index of Media Player? If I have to rebuild the indexes in the metadata file, the indexed fields are kept in?

    Only in the index of Media Player.  If you remove this file WMP (without actually deleting the computer/folder) and then read the file again, you would see that your changes have disappeared.

    To actually change the file, you will need a program known as ID3 Tag Editor.

  • right click on windows Explorer causes crash! Sometimes when I try to empty the trash, it also blocks? I use windows 7?

    right click on windows Explorer causes crash!  Sometimes when I try to empty the trash, it also blocks?  I use windows 7?

    Right-click accidents are caused by third-party shell extensions. To identify the culprit, you must use a utility like ShellExView and disable context menus not Microsoft managers one by one (or disable items in a batch) and observe.

    ShellExView - Manager of Windows Shell extensions:
    http://www.NirSoft.NET/utils/shexview.html

    And instructions are here (see "Method 2")
    http://WindowsXP.MVPs.org/slowrightclick.htm

    Ramesh Srinivasan, Microsoft MVP [Windows Desktop Experience]

Maybe you are looking for