Critical failure DirectX - DXDiag shows no problem, used for end-user TIME, nothing works.

Without apparent reason, Direct X has suddenly stopped working. I can't play Solitaire or the Sims 2. I followed the previous advice on this issue, and with the help of dxdiag shows no problem, reinstall he didn't help not, using the runtime for the end-user to install thing older DX 9 stuff told me that everything is up to date, I am at a total loss.

I am running Win 7 Home Premium and everything I have running is Firefox, GIMP, and Skype. I searched for nothing 'media center' as I've heard it's a question and nothing like running. I don't know what to do.

There are two DirectX install 'things'.

It looks like you were using the Installer Web of DirectX, which is an update of DirectX.

The update only installs the DirectX 'missing' files and does not overwrite the existing DirectX files.

which is what is needed if a DirectX file or files is damaged.

-It may be that your error is the result of corrupted files. It happens from time to time. Sometimes because

a game or other software borks DX format when it insists on the installation of DX again for you.

The DirectX Redist (June 2010) below to replace all DirectX files.

When you run the installer it will ask you where you want to save the downloaded installation program then

"unpacks" the installation of DirectX in the selected folder.

After unpacking, open that folder and locate the DXSETUP.exe. This will reinstall DirectX, and

should at least eliminate corrupt files DX as the source of the error.

(You can delete the installation folder after installation).

Download details - Microsoft Download Center - DirectX Redist (June 2010)

-Have you installed anything new? Updated graphics drivers, game, Skype, Firefox Add - o

Tags: Windows

Similar Questions

  • After you have reinstalled my Window 7 Professional is not activate with the product key, I received with my package & which I used for a long time.

    After you have reinstalled my Window 7 Professional is not activate with the product key, I received with my package & which I used for a long time. I tried to activate using automated phone system, but could not do. What is the solution. I know that this product key I used only on my current desktop & in past I had not faced any problem on reappattage. This time, I had deleted all the parks & reformatted all readers of my Win7 teacher reappattage. This can be a cause of failure of activation?

    Direct activation number: (888) 725-1047

    1-800-936-5700

  • I'm locked out of my ipod5 that I have not used for a long time, it is not connected to the Internet or iTunes is anyway can I unlock?

    I'm locked out of my ipod5 that I have not used for a long time, it is not connected to the Internet or iTunes is anyway can I unlock? In my opinion, it works on IOS8. Because I have not used in a long time, it has reset and does not connect to the wifi until I unlock, and I forgot the password to unlock it. I tried to clear up my iPhone but it requires Internet and iPod can not connect to Internet ithe, I also tried to restore the 'home' button and the lock button while connected to iTunes on my computer and that did not work either... Please let me know if I haven't tried something or have missed something.

    Thank you

    You have to follow the instructions for the erasure or use recovery mode in iTunes again. . You do not specify what happened when you tried to follow these instructions, or instructions for iTunes, which you tried to follow, but you will be able to exit the mode disabled via iTunes if you do not have Wifi:

    If you have forgotten the password for your iPhone, iPad or iPod touch, or your device is disabled - Apple supports

    See you soon,.

    GB

  • Windows parental control can be used for domain users?

    Original title: parental control Windows and users in the domain?

    Windows parental control can be used for domain users?

    Hi VMilana,

    The issue of Windows 7 you have posted is better suited for the IT Pro TechNet public. Please ask your question in the TechNet Windows 7 forum for assistance.

    Hope the helps of information.

  • Today, I downloaded Adobe InDesign CC 2015... 30 day trial on two laptops, two laptops show 30 days remaining for Setup user and 0 days for another user.

    Today, I downloaded Adobe InDesign CC 2015... 30 day trial on two laptops, two laptops show remaning 30 days for Setup user and 0 days for another user. In one case, the installer was one normal user, the other an administrator. The first admin gets 0 days left the 2nd that the normal user gets 0 dyas left

    Adobe trial software has expired at the beginning

  • CP7 - decimal points Show 4 (or more) for the user Variable?

    Is there a way to show the decimal points 4 or more for user variables?

    For some reason, I'm only show two decimal places for user variables in Captivate 7.

    Micky

    Fear, you need to use JS for that. How do you get the decimals?

  • Try using for the first time - ORA-28234 dbms_crypto

    Hello

    I try to use dbms_crypto for the first time and I'm getting ORA-28234 key too short. I ran a separate test: P2_KEYVAL with utl_raw.length (utl_raw.cast_to_raw(:P2_KEYVAL)) et il retourne à 128 caractères, qui est ce que je pense que je suis censé pour viser pour, mais c'est tout nouveau pour moi.) Any suggestions?

    Here's the code.
    DECLARE
       output_string      VARCHAR2 (200);
       encrypted_raw      RAW (2048);             -- stores encrypted binary text
       decrypted_raw      RAW (2048);             -- stores decrypted binary text
       key_bytes_raw      RAW (128);              -- stores 128-bit encryption key
       encryption_type    PLS_INTEGER :=          -- total encryption type
                                DBMS_CRYPTO.ENCRYPT_AES128
                              + DBMS_CRYPTO.CHAIN_CBC
                              + DBMS_CRYPTO.PAD_PKCS5;
    
                        
    BEGIN
         select utl_raw.cast_to_raw(rpad(:P2_KEYVAL,128,0)) into key_bytes_raw from dual;
         encrypted_raw := DBMS_CRYPTO.ENCRYPT
          (
             src => UTL_I18N.STRING_TO_RAW (:p2_INPUT,  'AL32UTF8'),
             typ => encryption_type,
             key => key_bytes_raw
          );
        -- The encrypted value "encrypted_raw" can be used here
       htp.prn ('Encrypted value: ' || encrypted_raw);
    END;
    ORA-28234: too short key length

    A quick test shows that a 16-character password works:

    DECLARE
      p2_input           varchar2(200) := 'this is a test';
      p2_keyval          varchar2(128 byte) := 'password';
      success boolean := false;
      output_string      VARCHAR2 (200);
      encrypted_raw      RAW (2048);             -- stores encrypted binary text
      decrypted_raw      RAW (2048);             -- stores decrypted binary text
      key_bytes_raw      RAW (128);              -- stores 128-bit encryption key
      encryption_type    PLS_INTEGER :=          -- total encryption type
                              DBMS_CRYPTO.ENCRYPT_AES128
                            + DBMS_CRYPTO.CHAIN_CBC
                            + DBMS_CRYPTO.PAD_PKCS5;
    BEGIN
      while not success AND LENGTH(p2_keyval) < 512 loop
        begin
          key_bytes_raw := utl_raw.cast_to_raw(P2_KEYVAL);
          encrypted_raw := DBMS_CRYPTO.ENCRYPT
            (
               src => UTL_I18N.STRING_TO_RAW (p2_INPUT,  'AL32UTF8'),
               typ => encryption_type,
               key => key_bytes_raw
            );
          SUCCESS := TRUE;
        EXCEPTION
          WHEN OTHERS THEN
            P2_KEYVAL := P2_KEYVAL || 'X';
        END ;
      end loop;
      dbms_output.put_line('PASS ('||LENGTH(p2_keyval)||'): '||p2_keyval);
      dbms_output.put_line('RAW PASS LEN: '||LENGTH(key_bytes_raw));
      dbms_output.put_line('Encrypted value: ' || encrypted_raw);
    END;
    /
    
    PASS (16): passwordXXXXXXXX
    RAW PASS LEN: 32
    Encrypted value: 5D39A532A468F04605E02AEC50F21B20
    

    Published by: Sentinel on December 5, 2008 13:45

  • Shortcut to shared folder used for years, suddenly will not work.

    So far, I was able to send files to the shared folder on the desktop or laptop computer and access them from computers. (Both running Windows 7). The only "change" to the system recently is the August security updates. Now I can send to the shared folder on the desktop but cannot access it from the laptop. I hope some good Samaritan can help me fix this frustrating problem. Here is what I get when I try to open the link on your mobile:

    Problem with shortcut
    The drive or network connection that refers to the "Shared Folder - Shortcut.lnk" shortcut is not available. Make sure that the disk is properly inserted or the network resource is available and then try again.

    \\Desktop is not available. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access permissions.

    Logon failure: the user has not granted the type of logon required on this computer.

    This is the path in the shortcut of the laptop:

    \\Desktop\Users\Jim File Dale\Desktop\Shared

    Hello

    ·        Are you able to communicate between computers in the homegroup?

    You can try to temporarily disable the antivirus and check if the same phenomenon occurs with shared folders.

    Disable the anti-virus software

    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software

    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks.

    If disabling antivirus works you will need to give exceptions.

    See the link below.

    http://Windows.Microsoft.com/en-us/Windows7/file-sharing-essentials

    Create a new folder on the computer and check. You can use advanced sharing option to check if it helps to solve this problem:

    1. go to the folder you want to share

    2 right click on the folder, and then select Properties.

    3. go to the tab shares and click on the button "Advanced sharing...". ».

    4. check the option "Share this folder", and then select permissions.

    5. by default, there will be the "everyone" group

    6. If you would like everyone to change your files then click full control for everyone.

    7. click on OK.

    8. Finally, click OK, and then try opening and editing of files from another computer.

    Hope this information is useful.

  • Is it possible to find bookmarks that I haven't used for a long time?

    I would like to delete bookmarks that I have not used over a long period of time. Is there a way to know when was the last time I used a bookmark?

    Firefox can come across your story, so if you do not erase the history you can kind of understand that. Here's what I mean.

    (1) open the Library dialog box to your Favorites. For example, bookmarks > show all bookmarks

    (2) in the top right search box, type http and make a pause while Firefox lists all matching bookmarks (should be almost all the)

    (3) If you do not have a column labeled Date of visit, made a right click No matter what column header and choose the Date of visit. (Or Mac equivalent of right-clicking.)

    (4) to sort by date, click on the header of column Date of visit. This should fix most recently visited vacuum. Click again to sort in the opposite effect.

    At this point, you may notice that the folder names are not displayed in the search results display. There is an add-on to show those if you decide that rather than delete you want doing drag and drop them into a folder of OLD STUFF "just in case" you will need it later.

    https://addons.Mozilla.org/firefox/addon/show-parent-folder/

    Is this useful?

  • Drop-down boxes as those used for the dates do not work and try to work for a while. What is going on?

    Drop-down boxes have not worked for the last few revisions of
    Firefox. I tried to eliminate all add ons etc. little nothing is done. For this
    not appear as it should be a big problem to solve, since these
    objects used to work properly in the past. I love otherwise Firefox
    and do not want to use a different browser. The drop-down list below does not either, but maybe it's the lack of content.

    Yes, I disabled everything. Even changed themes of Windows 7, but not luck.

    After sending this reply, it dawned on me that actual window guard can be
    the problem. When I excluded the window Firefox actual window guard
    control the drop-down boxes worked. Wish I thought of it earlier. Thanks to all those who have made suggestions and tried to help him. I really appreciate your time and efforts.

  • I can't acess all programs, all I get is chosen the program that you want to use to open this file, nothing works, why is that thank you

    I'm done with xpantspyware on my Windows XP some how I seem to have got rid of it but can not acess my control panel or anything without this arise (chose the program you want to use to open this file) can not get my internet explore have micorsoft essentials there have scan and says no virus detected is not came with any disk so lost here, what I bring to the Dr, or can it be fixed thanks

    You might have a problem with your .exe file associations.  Try the "fix EXE file association" on the link below.  Be sure to read the note at the top of the page regarding the .exe, complications of the association.

    <>http://www.dougknox.com/XP/file_assoc.htm >

    HTH,
    JW

  • Bought a new mac and used the migration utility and nothing works

    So I deleted all the Adobe products of my Mac Pro, rebooted and tried to install Adobe Cloud. He's trying to install then stops and says I need to get a new copy and installation - and he took over that loop indefinitely.

    What can I do to get the installed cloud.

    Thank you

    Migration of Mac with Time Machine WILL NOT WORK with the Cloud program activations due to hidden files

    Sign out of your account... Uninstall... to run vacuuming...

    -http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)

    -using the vacuuming after uninstalling and prior to the relocation is necessary

    -https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

    -Restart your computer... Sign in to your account... Reinstall

  • Problem for end users to access workbook?

    Hi Michael n Rod,

    The workbook I made works perfectly allright. I gave 3 users (shared) access the workbook.

    But 2 users are not able to open the workbook, i.e. it is said of some items are missing and I tried to ignore the elements... when I went by ignoring the elements Finally I got an error "dependence of the item was not found in the attempt of eul to open the workbook doesn't have." It's the problem iam facing.

    What wud be the problem? Solution for this need?


    Kind regards
    Murielle.

    Hello

    You must ensure that the user (or the role and responsibility that the user is using) has access to all sectors of activity that uses the workbook.

    To connect to the Admin of the Disco and securing the business area to grant access to the user on all these areas of activity.

    Rod West

  • Firefox is very slow, been using IE for a month. Nothing works except start PC in safe mode. 2 times, also uninstalled profile. Reinstall, resets, etc.

    also, disabled addons. See above. On win7. IE and google earth normal run. Abandoned, using IE for a month. On another PC so site reads the wrong plugins.

    Start the computer in Mode safe mode with network support Windows (on the startup screen, press F8) as a test to see if that helps.

  • Keyboard does not. Able to use for the connection does not work after that.

    The keyboard works to connect. But does not work after that.

    Hello Sml15,

    The embedded screen keyboard should still work even if the physical keyboard isn't.

    Try this first...

    Press and hold the Windows key and the space bar.

    If no joy, go to the search bar and with the built-in keyboard, type the filter keys and choose key filter on or off.

    In the window of the ease of access to the keyboard, disable FilterKeys.

    If all goes well, which will fix the problem.

    Let me know how it turns out.

Maybe you are looking for

  • 47L 6453 Smart TV apps are gone

    This morning my 47L 6453 told me it was an update to do. I allowed him to do so. When it is started to my smart TV top had no applications, boxes, icons or anything like that. I have my user name on top, the strength of wifi, the date and time. and a

  • Mail continues to send a particular to Junk Sender

    Hello I have a Gmail address that OS X Mail pulls on IMAP. It also goes to my iPhone, another Mac at home and an iPad. There is a personal email dress that no matter what I do, Mail it appears in the junk e-mail folder. The address is in my Gmail and

  • Lock the button end a call?

    I never noticed this on my iPhone 5s, but since I switched to my iPhone 6 s ive noticed that I continue to hang up on people on a call by pressing the lock button. Is it possible to do the locking button hang up don't no calls? In my business, we ten

  • How to edit a scanned invoice

    Im trying to change a scanned for my own use shipping invoice. Ive scanned but do not understand how or where put on to change the words on the sheet. I want to be able to use the same shape over and over again but change the words. Im not computer s

  • Compatibility of the 'wireless laser mouse 7000' with 'wireless laser mouse 6000 receiver.

    Hello One of my colleagues gave me his extra Wireless Laser Mouse 7000, but he gave me a Wireless Laser Mouse 6000 receiver. will be the mouse 7000 and 6000 receiver work? are they compatible? help someone?