Ordinal 6663 er

Hello,?After installing the latest drivers for Creative Sound Blaster Audigy, Audigy 2 series and Audigy 4 series Driver 02.09.006 updated Oct 6 2006, I get a cthelper.exe application error on start-up: Ordinal 6663 failed to load in MFC42.dll? I tried to remove and reinstall the driver but it still failed. I rolled my PC back using System restore to a point before I installed the driver and the error went away. After re-installing the driver again it came back. Does anyone know why this error is coming up?Thank you,HandOverFist?PS. ?I read somewhere that the new driver might be writing over my version of mfc42 with a corrupt version of the application. There are several of copies of this file on my harddri've. Does anyone know which one of them it is looking at (windows, windows/system32, ect..)? And what is the correct version of the DLL to get the drivers to work?

This error turned out to be caused by the installation application writing over my mfc42.dll?with an older version of the file. Since mfc42.dll existed in several directories, I took the latest version of the file and copied it into my c:\windows directory and replaced the corrupt file there. This fixed the problem. HandOverFist

Similar Messages

  • Wave Device: Not Availa

    Hi,?Hope this is an easy one but i'm going round in circles. I have installed my X-Fi Platinum card into my machine, installed drivers. But no sound. When I inspect the Audio Console?It says?Wave Device:Not Available?MIDI DeviceSB X-Fi Synth A [EC00]?Mixer DeviceSB X-Fi Mixer [EC00]?In device manager it's fine no conflict?I have bios disabled the on board soundcard, I think it is something simple but I just can't find the solution. Thanks

    I just tried this and it has not worked. I am getting an error message though:The ordinal 6663 could not be located in the dynamic link library MFC42.DLL
    ?I have previously tried the following?
    upgraded drivers to latest revision<
    reinstalling drivers twice<
    deleting device from Device Manager and rediscovering then installing new drivers<
    swapping PCI slot testing, then after fail reinstalling drivers<
    disabled other sound devices in Device Manager<
    Creative Diagnostics crashes, I would like to flush every trace of the creative suite (all versions and?every registry entry) from my system and start with a fresh install, I realy think this may turn out to be a nasty one.
    ?Message Edited by markedwards_uk on 2-0-200703:45 PM

  • Need to convert time to GMT or UNIVERSAL CO-ORDINATED TIME

    Hi,
        I need to convert a date and time to UNIVERSAL CO-ORDINATED TIME or GMT. Is there any function module to do the same. Please do let me know.
    TIA
    Gurpreet

    Hi,
    Here is the example program to conver the time to UTC
    DATA: time_stamp TYPE timestamp,
           dat TYPE d,
           tim TYPE t,
           tz   TYPE ttzz-tzone,
           dst (1) TYPE c.
    tz = 'UTC '.     " You need to maintain the ZONE
    time_stamp = 20030309033000.
    CONVERT TIME STAMP time_stamp TIME ZONE tz
            INTO DATE dat TIME tim DAYLIGHT SAVING TIME dst.
    WRITE: /(10) dat, (8) tim, dst.
    time_stamp = 20030309043000.
    CONVERT TIME STAMP time_stamp TIME ZONE tz
            INTO DATE dat TIME tim DAYLIGHT SAVING TIME dst.
    WRITE: /(10) dat, (8) tim, dst.
    Regards
    Sudheer

  • How to show Ordinal numbers in Mac Mail

    How to show Ordinal numbers in Mac Mail?

    do it with the help of import-export wizard. Here goes the steps for youhttp://www.trickyways.com/2010/08/how-to-transfer-emails-from-outlook-to-apple-m
    ail/
    Your best move would be if you search for your problem on some search engine
    that you use.
    Typing "Convert
    Pst To Mac Mail" will land you in several solution.
    Or you can simply visit apple online store for this problem have a look:
    https://itunes.apple.com/in/app/pst-con
    ... 1009?mt=12
    Hope this helps

  • Item cannot be found in the collection corresponding to the requested name or ordinal.

    Hi,
    I am using Dreamweavers User Authentication tool, and all seems to be working except when I press the 'Submit' button I get the following error;
    ADODB.Fields error '800a0cc1'
    Item cannot be found in the collection corresponding to the requested name or ordinal.
    /coding/test_login.asp, line 35
    As far as I can tell the user login works, as I can assess the restricted page, if I manually type in the URL.
    My code is listed below;
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="Connections/Conn_PSCRM_Demo.asp" -->
    <%
    ' *** Validate request to log in to this site.
    MM_LoginAction = Request.ServerVariables("URL")
    If Request.QueryString <> "" Then MM_LoginAction = MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString)
    MM_valUsername = CStr(Request.Form("usercode"))
    If MM_valUsername <> "" Then
      Dim MM_fldUserAuthorization
      Dim MM_redirectLoginSuccess
      Dim MM_redirectLoginFailed
      Dim MM_loginSQL
      Dim MM_rsUser
      Dim MM_rsUser_cmd
      MM_fldUserAuthorization = """group"""
      MM_redirectLoginSuccess = "yes.asp"
      MM_redirectLoginFailed = "no_access.asp"
      MM_loginSQL = "SELECT usercode, epros_password"
      If MM_fldUserAuthorization <> "" Then MM_loginSQL = MM_loginSQL & "," & MM_fldUserAuthorization
      MM_loginSQL = MM_loginSQL & " FROM DBA.[user] WHERE usercode = ? AND epros_password = ?"
      Set MM_rsUser_cmd = Server.CreateObject ("ADODB.Command")
      MM_rsUser_cmd.ActiveConnection = MM_Conn_PSCRM_Demo_STRING
      MM_rsUser_cmd.CommandText = MM_loginSQL
      MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param1", 200, 1, 255, MM_valUsername) ' adVarChar
      MM_rsUser_cmd.Parameters.Append MM_rsUser_cmd.CreateParameter("param2", 200, 1, 255, Request.Form("password")) ' adVarChar
      MM_rsUser_cmd.Prepared = true
      Set MM_rsUser = MM_rsUser_cmd.Execute
      If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then
        ' username and password match - this is a valid user
        Session("MM_Username") = MM_valUsername
        If (MM_fldUserAuthorization <> "") Then
          Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value)
        Else
          Session("MM_UserAuthorization") = ""
        End If
        if CStr(Request.QueryString("accessdenied")) <> "" And true Then
          MM_redirectLoginSuccess = Request.QueryString("accessdenied")
        End If
        MM_rsUser.Close
        Response.Redirect(MM_redirectLoginSuccess)
      End If
      MM_rsUser.Close
      Response.Redirect(MM_redirectLoginFailed)
    End If
    %>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    </head>
    <body>
    <form action="<%=MM_LoginAction%>" method="POST" name="logon">
    <input name="usercode" type="text"><br>
    <input name="password" type="text">
    <input type="submit" name="Submit" id="Submit" value="Submit">
    </form>
    </body>
    </html>
    Any help greatly accepted.

    There are several workarounds you could use. I would start by setting the local variable back to the actual column name
    MM_fldUserAuthorization = "group"
    and then modify the reserved word directly SQL. See if this works:
      If MM_fldUserAuthorization <> "" Then MM_loginSQL = MM_loginSQL & "," & """MM_fldUserAuthorization"""
    If that line doesn't work, then you might need to concatenate the quotes around the variable, or try a combination of single/double quotes.
    Also be warned that once you modify DW's generated code, you probably will not be able to maintain the code in DW server behavior wizard. You'll need to maintain by hand.
    Good luck.

  • Adobe error ordinal 459

    Hello,I am trying to instal adobe reader for a friend of mine.but everytime i download and click run I get the message "The ordinal 459 could not be located in the dynamic link library urlmon.dll
    Please if you know how to fix this,Let me know.Thanks.

    HI,
    Please download Adobe Reader from the direct link : http://get.adobe.com/reader/enterprise/

  • Ordinal 55 could not be found in the dynaminc link library iertutil.dll cs5.5 installation problem.

    Okay, so when i downloaded the trial version of Flash Professional CS5.5, the following popup "popped up".
    "The dynamic link library iertutil.dll could not be found. Reinstalling the application may solve this problem."
    So i went to a site that had helped me with this sort of thing before dll-files.com, and downloaded iertutil.dll, and placed it in my System32 folder.
    I pressed OK on the previous pop-up, only to be greeted with:
    "Ordinal 55 could not be found in the dynaminc link library iertutil.dll"
    Flash CS5.5 finished installing and works great, but the same Ordinal 55 popup pops up at least a hundred times a day, (It's even popping up as I write this) even when Flash isn't open
    I'm using Windows XP SP2, I have Internet Explorer 6 SP2 (though i usually use Google Chrome Instead)
    Thanks in advance...

    Hi Bansal,
    When does this error start to occur? Check Event Viewer and see if we could find any other messages.
    Take a try with the SFC command:
    Use the System File Checker tool to repair missing or corrupted system files
    Further, try the following if SFC won't help:
    How to repair or reinstall Internet Explorer in Windows
    Best regards
    Michael Shao
    TechNet Community Support

  • A3DReviewer.exe - Ordinal Not Found

    I have Acrobat 9 Pro Extended and trying to open the Adobe 3D Reviewer and get:
    A3DReviewer.exe - Ordinal Not Found
    The ordinal 3003 could not be located in the dynamic link library TFKGEOM.dll
    I've searched around and have not seen any answers in this forum or Googled.

    I fixed this problem by downloading the version of developer off of the oracle website. Then reinstalling individually, the GUI, the common files, the report builder, and reports runtime. When I was asked if I wanted to replace the newer version I said yes each time it asked. And that seems to have cleared up my problem. I hope this helps any others experiencing this problem.

  • "Owl Orphanage" error in Dreamweaver CS5 - ordinal not found

    About 3 weeks ago, I started getting this dialog box whenever I start Dreamweaver CS5:
    For the sake of search engines, it says
    Owl Orphanage: Dreamweaver.exe - Ordinal Not Found
    The ordinal 3712 could not be located in the dynamic link library LIBEAY32.dll.
    When I click the X or the OK button, the dialog goes away and pops up again immediately. When I click X or OK a second time, Dreamweaver starts normally.
    I just reinstalled Dreamweaver, and the problem persists. I haven't yet resorted to uninstalling all of CS5 and reinstalling it, but that's the next step.
    Can someone explain what's going on (including why I've been running Dreamweaver for years with no problems and then this suddenly starts happening), and is there a fix for this? Thank you.

    That's very good information to know - thank you. Unfortunately it doesn't help much since I'm at the mercy of AMD for graphics drivers. But at least I can report this to them, maybe they'll fix it.

  • On m'a volé mon deuxième ordinateur portable avec mes logiciels dessus installé pour le seconde fois, comment vais-je faire pour les réinstaller une troisième fois ?

    On m'a volé mon deuxième ordinateur portable avec mes logiciels installés pour le seconde fois, comment vais-je faire pour les réinstaller une troisième fois sur un troisième pc ?

    This is an English forum site, so posting in English will have a better chance of getting a response. What isn't clear is what Adobe product you are using.
    Ce est un site de forum anglais, donc l'affichage en anglais aura une meilleure chance d'obtenir une réponse. Ce qui est clair, ce est ce que Adobe produit que vous utilisez.

  • Store autoriser l'ordinateur où est la commande

    le système DEMANDE D'AUTORISER , Et l'aide suggere  : store, autoriser l'ordinateur : où est la commande ?

    réponse trouvée (alt s), et problème résolu
    merci, mais la doc est plutôt simpliste

  • Open Blocks with ordinal number with VB6

    nifOpenBlock (nifDesc_t ud, NIFB_ORDINAL(n),
    nifDesc_t *out_ud)
    How can I create NIFB_ORDINAL macro or routine in VB6. I nedd to open the blocks using the ordinal number not the tag name.

    Please refer to VC code, the macro NIFB_ORDINAL is defined from function makeIndex. You also can find this function in VB6.
    Feilian (Vince) Shen

  • Dispute case -- Co-ordinator and Origin field

    Hi All,
    Dispute case is created. I went into Change mode, trying to populate Co-ordinator field and Origin field. These fields are greyed out and not ready for editing. Even though Attribute profile is changed to modifiable, i am not able to change. Help in this reagard is appreciated.
    Thanks
    Rajanikanth.

    check all of the options in the attributes profile
    on the far right is editable on creation only or something like that.
    the other thing to check is that you are editing the correct attribute profile linked to the dispute case...

  • Ordinal 19 in MAPI32.dll

    I have tried reinstalling and also repairing the Reader X on my sister's machine running Windows XP Home SP3.  When trying to open any PDF file, we get an error message, "The ordinal 19 could not be located in the dynamik link library MAPI32.dll."  How can this be taken care of?  The machine is a Compaq Presario SR1517CL.

    I've just encountered this same problem after updating to ReaderX.  I updated
    everything possible on Microsoft without luck.  What worked -- I had saved my document just to the desktop. I right-clicked on my document's file icon and selected "open with" "Adobe Reader." It popped open a license agreement for using ReaderX, which I "accepted" and then my document opened up.  Miraculous!  Now my PDF files seem to working just fine again. An odd little quirk.  I hope this works for you too.

  • MDX Formula (Level.Ordinal) Problem

    I'm converting some calculations to MDX to use in ASO however I am having trouble converting the condition: @curlev(Flight)<=2)
    I thought I would be able to do '[Flight].CurrentMember.Level.Ordinal <= 2' but i get the error:
    Error(1260052) - Syntax error in input MDX query on line 6 at token 'Ordinal' LoadFactor
    Has anyone got any suggestions?
    Thanks in advance :)

    hmm really. I'll give that a go at work on Monday. Every example I could find seemed to indicate the way I was using it :/
    thanks garycris
    edit: Thanks. That was it.
    Message was edited by:
    Williss

Maybe you are looking for