Illustrator CS error : "The memory could not be "read""

Hi,
If i close the Adobe illustrator CS in my pc(Windows XP). "The instruction at "0*00341469" referenced memory at "0*00000000". The memory could not be
"read"", error displayed. If i click ok, then only the illustrator closed. Could you please advice me how to solve this error.
Regards,
Maria Prabudass E

Possibly a bad font.
check
The memory could not be...

Similar Messages

  • Receive an Application Error (The memory could not be "read") when opening

    After I install Itunes the program works ok until I close it and try to reopen. When I do this I receive an Application Error that says:
    The instruction at "0x6686f183" referenced memory at "0x0fccc094". The memory could not be "read".
    Click OK to terminate the program
    Click CANCEL to debug the program
    Debugging does not work so the only solution is to uninstall Itunes and then reinstall. That again only works for one use of the program. As soon as I close it and re-open, I get the same error. Please HELP. I cannot waste any more time uninstalling and reinstalling.
    Sony   Windows XP  

    Try this: Turn off automatic Microsoft/Windows updates and reboot your computer. I saw this a couple of weeks ago on the forum.

  • Application Error: "The memory could not be 'read'."

    I am programming an application in C#.
    I am using an Acrobat Reader control on my form to display PDFs within my program.
    I have tried a couple of different configurations with the form control. I have drag-and-dropped the control prior to runtime. I have also tried to add the control dynamically.
    When I run the program, then activate the control and close the form, I get the following error.
    "sw:name.exe - Application Error; The instruction at "0x0700609c" referenced memory at "0x00000014". The memory could not be 'read'. Click on OK to terminate the program."
    I have googled this error for hours now, and cannot find anything that truly explains this error and how to fix it.
    Thank you for any help.

    To who may be interested, I managed to find a workaround for this bug in Adobe Reader 9.0.
    It seems that, somehow, LabVIEW, and other programming tools, straggle with this version of Adobe (I assume that this is due to this bug) when closing the reference to Adobe created by the ActiveX container.  So the solution would be closing "by hand" this reference, and telling Windows to free all the relation between the application (LabVIEW for us) and Adobe.  The idea is that when we've done with the VI which displays the PDF via ActiveX, we should close the reference to the ActiveX control, close the reference to the VI, and:
      - process all the Windows messages currently in the message queue (.NET:  System.Windows.Form.Application -> DoEvents
      - run CoFreeUnusedLibraries in "ole32.dll"
    I hope this information can help somebody, as I wasted too much time to figure this out (finding eventually the answer in a forum of Adobe!)
    P.S. For those who program in C# as well, check this link; this was my source.

  • Cannot Change Data Source - Error The memory could not be "read"

    We have some reports that were created under Crystal Reports version 10 using a Sybase 12.5 database as the datasource.  We have since upgraded to Sybase 15 ASE and we are also attempting to upgrade these reports to Crystal Reports version 11.5.  The reports will convert to version 11.5 but will not work because of the following error:
    "Failed to load database information. Details: The database connector 'crdb_p2ssyb10.dll' could not be loaded"
    From previous experience we know that Sybase 15 is only supported via ODBC with Crystal Report 11.5, so we tried to change the datasource to ODBC, but when we do that we get the following error:
    The instruction at "0x0e864b11" referenced memory at "0x00000004". The memory could not be "read".
    Do we have any options at this point besides competely re-creating the reports?

    We are using CR 11.5 and trying to change the data source to ODBC.  I can create a new report and use the same stored procedures as a datasource via ODBC with no issues.  I only have an issue when trying to change the data source on these existing reports.

  • Application error The memory could not be read 0x00000014

    Hi everyone,
    I would like to know if any of you have come across this issue.
    I'm running an application built by me in a computer with LabVIEW Run-time 9 in which I display a PDF file using an ActiveX control:
     The target computer runs Adboe Reader 9.0.  Everything works perfect until the application is closed.  From time to time (nearly most of the times), I've got the next windows error:
    "Application Error:  The instruction at "0x0ffd609c" referenced memory at "0x00000014".  The memory could not be "read".  Click on OK to terminate the program".
    Trying to find out the reason, I found a couple of forums which claim that the reason is a bug in Adobe 9.0 (actually, I've tried running the application with Adobe Reader 8 and I cannot repeat the error).  Any of you have had this error before and found a solution?  Those links weren't about LabVIEW and I have no idea how to get around this issue.
    Any help is appreciate it.
    Thanks in advance.
    Dani
    Solved!
    Go to Solution.

    To who may be interested, I managed to find a workaround for this bug in Adobe Reader 9.0.
    It seems that, somehow, LabVIEW, and other programming tools, straggle with this version of Adobe (I assume that this is due to this bug) when closing the reference to Adobe created by the ActiveX container.  So the solution would be closing "by hand" this reference, and telling Windows to free all the relation between the application (LabVIEW for us) and Adobe.  The idea is that when we've done with the VI which displays the PDF via ActiveX, we should close the reference to the ActiveX control, close the reference to the VI, and:
      - process all the Windows messages currently in the message queue (.NET:  System.Windows.Form.Application -> DoEvents
      - run CoFreeUnusedLibraries in "ole32.dll"
    I hope this information can help somebody, as I wasted too much time to figure this out (finding eventually the answer in a forum of Adobe!)
    P.S. For those who program in C# as well, check this link; this was my source.

  • Java.exe application error - the memory could not be read

    Hi all,
    I have some problems. I have been getting this error:
    The instruction at "0x03491c33" referenced memory at "0x034c1f77". The memory could not be "read".
    This error occurs when the disconnect function() is called.
    My code is as follows:
    JNIEXPORT void JNICALL Java_JFrame_disconnect (JNIEnv * env, jobject obj) {
    ::CoInitialize(NULL);
    HINSTANCE getprocDLL = LoadLibrary(TEXT("test.dll"));
    if (getprocDLL != NULL){
    typedef void (_cdecl*pICFUNC)(void);
    pICFUNC disconnect;
    FARPROC getProcessID = (FARPROC)GetProcAddress(HMODULE(getprocDLL),"Disconnect");
    disconnect = pICFUNC (getProcessID);
    disconnect() <---- error occurs when this function is called
    FreeLibrary(getprocDLL);
    ::CoUninitialize();
    Any idea what could be the possible problem with the code?
    Any help / suggestions would be greatly appreciated! Thanks in advance!
    Edited by: dolphlam on Sep 4, 2008 12:41 AM

    1. Check what value getProcessID has.
    2. Verify that the signature of the method that you are casting it to is correct.
    3. Can you call disconnect without actually connecting to something?
    4. Move the code out of JNI entirely. Create a C/C++ executable and verify that the code works there first.

  • Safari Application Error "The memory could not be read"

    First of all I would like to say I LOVE Safari (for Windows). Because of it and iTunes I have recently purchased a mac. Now the problem.
    For the past 2 weeks or so this has been happening. When I start up Safari I get an error message that says
    Safari.exe - Application Error
    The Instruction at "0x121f377b" referenced memory at "0x00000000". The memory could not be "read". Click OK to terminate the program.
    Now here is where its funny....Safari works, just every time i open it wether it a new window or at startup...this comes up. Does anyone know anyway to fix this and any useful tips for Safari/internet connections/macs?

    Actually, I spoke too soon as far as AVG Free anti-virus' link scanner. The next time I opened Pandora internet radio, I got the error again. Looks like it has something to do with adobe flash player for Safari. I removed flash player and i could not get the error. As soon as i re-install and run a website with flash, it gives me the error again until i restart my machine.

  • Itunes 7 Application error - the memory could not be "read"

    Hi guys.
    I just bought my first ipod and i upgrated itunes.
    but now itune just doesn't work!!!
    i getting this message:
    the instruction at "0x1000257a" referenced memory at "0x00000000". The memory could not be "read".
    I tried to uninstalled but it didn't help.
    I so frustrated, what sould i do...

    okay, the broken QT will be causing at least some of the itunes grief.
    let's try this first.
    head into your Add/Remove programs. uninstall your existing QuickTime.
    if Add/Remove won't let you uninstall QuickTime, download and install the Windows Installer CleanUp utility. then use it to clear any existing QuickTime installation configuration information from your PC:
    Description of the Windows Installer CleanUp Utility
    Next, we’ll manually remove leftover program files and folders.
    1. On the Start menu, click My Computer (or double-click My Computer on the Desktop).
    2. In My Computer, open Local Disk.
    3. Open Program Files.
    4. Right-click on the QuickTime folder and click Delete from the shortcut menu.
    5. Navigate to C:\Windows\system32\.
    6. Remove the files QuickTime.qts and QuicktimeVR.qtx.
    7. Restart your computer.
    next, we'll get a fresh copy of QuickTime into your PC by doing a repair install of itunes. (switch off antivirus and antispyware applications prior to the install.)
    go into Add/Remove and select itunes. click "Change" and then click "Repair".
    if the repair install goes through okay, restart the PC and try launching itunes again. does it launch properly now?

  • Error "The memory could not be "read" in tuxedo client 8.0

    Old Environment:
    1.Tuxedo Server 6.4
    2.Tuxedo /WS 6.4
    5.PowerBuilder 5.1
    New Environment:
    1.Tuxedo Server 8.0
    2.Tuxedo Client 8.0
    3.PowerBuilder 8
    In my upgrade software version progress, I want to unchange my old source code
    or little changed. I've DLL develop from Visual C++ to communicate bewteen Tuxedo
    and PowerBuilder.
    After upgraded software, I found memory error from my client PowerBuilder application
    (See error from attach file.) and I don't know what's cause of this error. And
    after I've found this error I try to use tuxedo /ws version 6.4 again, It's workable
    and not found memory error.
    Please give me if you found the solution of this case .
    Thanks you very much for yours help.
    [error.bmp]

    We are working on a similar case from another customer. Please contact customer support and
    provide them details of your case.
    -Deepak
    Sutep wrote:
    Old Environment:
    1.Tuxedo Server 6.4
    2.Tuxedo /WS 6.4
    5.PowerBuilder 5.1
    New Environment:
    1.Tuxedo Server 8.0
    2.Tuxedo Client 8.0
    3.PowerBuilder 8
    In my upgrade software version progress, I want to unchange my old source code
    or little changed. I've DLL develop from Visual C++ to communicate bewteen Tuxedo
    and PowerBuilder.
    After upgraded software, I found memory error from my client PowerBuilder application
    (See error from attach file.) and I don't know what's cause of this error. And
    after I've found this error I try to use tuxedo /ws version 6.4 again, It's workable
    and not found memory error.
    Please give me if you found the solution of this case .
    Thanks you very much for yours help.
    Name: error.bmp
    error.bmp Type: Bitmap Image (image/bmp)
    Encoding: base64

  • Can't open firefox, get error message: The instruction at "0x00000000" referenced memory at "0x00000000". The memory could not be read". Firefox won't open at all, not in safe mode or anything. Tried uninstalling and reinstalling, no good, tried creating

    Cant' open Firefox at all, not in safe mode either, tried creating new profile, cant' get in to do that, tried uninstalling and reinstalling, switching off and on, nothing works. Get error: "The instruction at "0x00000000" referenced memory at "0x00000000". The memory could not be read."
    == This happened ==
    Every time Firefox opened
    == today. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)

    The solution is easy.
    Install "Malwarebytes' Anti-Malware" free edition and use it. This program found malware in your pc. After that clean this malware. Finally instal Firefox again and enyoy it because this installation is correct and clean. Regards.

  • Using LabVIEW 6.0.1 in Win2K, I get the Application Error: The instruction at "0x004be060" referenced memory at "0x00000001". The memory could not be "read".

    I have several VIs that use the same typedef. This "super" typedef consists of of a cluster containing 6 arrays. Each array has elements that are themselves typedefs. The array element typedefs consist of a cluster of strings, a string array, and yet another cluster typedef of instrument handles. The total number of unique typedefs is 13 (1 super, 1 as the array element in the 6 arrays, and 1 in each array element).
    When I make any changes to any of these typedefs and I try to open a VI that uses the "super" typedef, LabVIEW stops loading subVIs and crashes with the Application Error: Application Error: The inst
    ruction at "0x004be060" referenced memory at "0x00000001". The memory could not be "read". Also note that this VI contains several subVIs that use this "super" typedef for terminal inputs and outputs.
    What is causing this problem? My only solution to this is to rename the "super" typedef, open the VI, ignoring the load of the "super" typedef, and once the VI opens (with a broken arrow) relinking the VI to the typdef after renaming the typedef back to the original name. This becomes quite painful when you have to do this for each and every VI that uses this typedef on every revision of the typedef.

    You might want to first install the 6.0.2 patch before digging too far into this. You can download it from the ftp site:
    ftp://ftp.ni.com/support/labview/windows/updates/6.0.2/
    If the problem remains, then it is likely related to a few known issues with strict type defs. Unfortunately, there is not much that can be done about it at the present time. You might try having the *.ctl file open in the editor when you open the VIs to see if that helps.

  • When I close firefox I get an error message that says:The instruction at 0x7758144 referenced memory @ 0xffffffff, The memory could not be read, how to fix ths?

    I get an error message that says , nsAppShell:EventWindow:firefox.exe... Application E...
    The instruction at 0x7758e1144 referenced memory at 0xffffffff. the memory could not be read. Click on OK to terminate the program. What's wrong and how do I fix it?

    I knew how to do that, sorry. I didn't know if you wanted a copy of each individual report or just the page. Here it is...
    Submitted Crash Reports
    Report ID Date Submitted
    bp-af8afb9c-406f-4843-b5f0-f341c2140704 7/2/2014 7:12 PM
    bp-500df430-465f-44ec-9a7e-c34372140702 7/2/2014 4:52 PM
    bp-2c14d0a2-b4a2-4eee-a72d-85b912140702 7/2/2014 4:51 PM
    bp-2e8bc220-7e16-4291-b3c3-59a7b2140702 7/2/2014 4:50 PM
    bp-ea8a52d4-ff08-48f4-b641-539202140702 7/2/2014 4:49 PM
    bp-7ff8483e-468a-4324-b788-336e02140702 7/2/2014 4:46 PM
    bp-ee0edfa1-f678-428c-868d-1f80b2140702 7/2/2014 4:44 PM
    bp-dd32ccd5-4a84-4582-baa9-d731a2140701 7/1/2014 5:29 PM
    75d1f4f1-730e-4e6d-a9aa-7bf08527c14e 5/14/2014 7:40 PM
    a5d77b9b-5adc-40ed-8926-245f9c1711b2 4/23/2014 6:24 PM
    42ef8c1d-dd05-401f-b91c-15633c5080f5 2/17/2014 2:33 PM
    0a233130-e0e9-4a78-ac7c-70ce42d07fcd 2/17/2014 2:33 PM
    90b4e67a-5655-4dbf-96aa-b1ceb622cffb 2/17/2014 2:33 PM
    1222611d-88cd-4c2b-a165-48dc2ae60888 2/17/2014 2:33 PM
    921660a9-b14c-4b71-81c0-4864f246f531 2/17/2014 2:32 PM
    84c51953-118a-4b16-a65c-5b0472c31885 2/17/2014 2:32 PM
    b12c8c12-b5d2-4028-8804-7831fff1e059 2/17/2014 2:32 PM
    fa608271-c2c6-4ff2-8fee-dd12d9cddca5 2/17/2014 2:32 PM
    110a075b-5209-4b48-98fb-51f6c18747b7 2/17/2014 2:32 PM
    f6b7c7f8-edb5-4c8a-9f9d-95cdf9dae28f 2/17/2014 2:32 PM
    38df997b-6c08-4b04-9e10-79114e21b087 2/17/2014 2:32 PM
    58e8b80b-0482-4df7-874e-e3c051e3a390 2/17/2014 2:32 PM
    2649763b-3e51-414c-87a9-c429e2542a1c 2/17/2014 2:32 PM
    f3323912-ee94-40ac-9378-891cf8d04454 2/17/2014 2:32 PM
    db9a70c3-8de0-4b52-b7f2-999da7fa4584 2/17/2014 2:32 PM
    ac6c20aa-fd8b-4068-8fee-777fddba34a9 2/17/2014 2:32 PM
    86068336-7d23-42de-ae1e-30c58f38ed20 2/17/2014 2:32 PM
    da68f0b9-1b9f-4fc6-b16d-1f7b3e57a111 2/17/2014 2:32 PM
    a5a07386-14fb-44e3-aabe-2dcf350980f8 2/17/2014 2:32 PM
    3f447cee-1105-416e-9b66-163fcb2f25fb 2/17/2014 2:32 PM
    968c04e0-00bd-4489-8ac3-13e2100b0f70 2/17/2014 2:32 PM
    84a12490-7aff-43a3-8b18-e596eef73ece 2/17/2014 2:32 PM
    8f5bc390-2805-41df-8d60-48c2b6b61816 2/17/2014 2:32 PM
    088af5c3-ec72-47a6-be3e-5635daf4bd7c 2/17/2014 2:32 PM
    30f469f8-4802-4708-ad13-01b0f69a5087 2/17/2014 2:32 PM
    33080078-0b63-4db7-8f06-0ae2547e8118 2/17/2014 2:32 PM
    f03a4616-d0bb-41a6-b322-b5edfbaaede8 2/17/2014 2:32 PM
    577bb1ab-2f33-4707-b3f5-a89fab3ecdfb 2/17/2014 2:32 PM
    e05818d0-59b2-4e32-aa85-88a76401a12c 2/17/2014 2:32 PM
    0d6c09fa-bc59-438a-b306-7775f4339846 2/17/2014 2:32 PM
    95d256b1-f1d2-4443-99f1-2373246e2c40 2/17/2014 2:32 PM
    fa943610-9b45-4e01-ba2e-137fff6b0278 2/17/2014 2:32 PM
    1d918c94-c13e-4e1b-89f6-6931e0aa99a8 2/17/2014 2:32 PM
    b7a0218c-de80-4a2f-9aea-8df9bda565fe 2/17/2014 2:32 PM
    9b9d142f-e411-4529-840d-b0ad9bae57e6 2/17/2014 2:32 PM
    cbdc8180-d488-4a74-954a-2b209954cee9 2/17/2014 2:32 PM
    b0d7cb88-4f57-4650-8863-d085d7eaa255 2/17/2014 2:32 PM
    fc56f033-1b12-4588-8ffb-8742245d8e0b 2/17/2014 2:32 PM
    603c27c7-d40e-45bb-8a23-85cd5e3ad974 2/17/2014 2:32 PM
    03778c8d-1e07-4532-a692-cc13200c9bd8 2/17/2014 2:32 PM
    e8a1bcbd-9109-48a3-9d4b-7ad2c66ba12f 2/17/2014 2:32 PM
    5c063da2-6949-44cf-9f8a-12d45e41b053 2/17/2014 2:32 PM
    6758ff53-9c38-472f-83b0-466c7d38080a 2/17/2014 2:32 PM
    a252f676-f745-415b-b640-5eb8df5cbc6d 2/17/2014 2:32 PM
    a0ffc786-3e64-4d41-8518-1545ec39ca90 2/17/2014 2:32 PM
    922ea6d5-6204-4a10-8208-68dddef1afcb 2/17/2014 2:32 PM
    8bf8a1b9-33ce-48df-9f73-36d09da7d3b2 2/17/2014 2:00 PM

  • When I close Firefox, I get an error That says "The insstuctions at 0x7c911389 references memory at 0x0000010. The memory could not be read

    When I exit Firefox, I get an error message that says The instuction at 0x7c911389 referenced memory at 0x000000010 The memory could not be read.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Wfmlrgsm.exe error.  The memory could not be read.

    Dear experts,
    I have this Installation:
    Oracle apps 11 on Windows XP Pro. Visual C++, cygwin.
    After I bring up the database listener, and Apache Server,
    I then start the service,
    OracleConcMgrTEST
    which is:
    C:\oapps11\testappl\fnd\11.5.0\bin\CCMSVC.exe TEST
    But I keep getting a pop up error window:
    Wfmlrgsm.exe – Application Error
    The instruction at "7C911F52" referenced memory at "4543414F". The memory could not be "read".
    Click ok to terminate
    Click on Cancel to debug the program.
    The file is:
    $ find . -type f 2>/dev/null | grep -i "Wfmlrgsm.exe"
    /cygdrive/c/oapps11/testappl/fnd/11.5.0/bin/WFMLRGSM.exe
    When I have pressed cancel to debug, it brings up Visual C++ debugger.
    I see:
    7C911F22 E8 2C BA 04 00 E9 29 F0 FF FF 0F B7 C0 50 56 E8 è,º..é)ðÿÿ.·ÀPVè
    7C911F32 CB 00 00 00 E9 34 65 00 00 3B 5F 14 0F 87 3B 83 Ë...é4e..;_..‡;ƒ
    7C911F42 03 00 E9 72 97 00 00 8B 70 04 83 EE 08 89 75 C8 ..ér—..‹p.ƒî.‰uÈ
    7C911F52 8A 46 05 88 45 E3 8D 4E 08 8B 39 89 BD 48 FE FF ŠF..Eã.N.‹9‰½Hþÿ
    7C911F62 FF 8B 56 0C 89 95 78 FF FF FF 8B 12 3B 57 04 0F ÿ‹V.‰•xÿÿÿ‹.;W..
    7C911F72 85 F3 23 02 00 3B D1 0F 85 EB 23 02 00 8B 8D 78 …ó#..;Ñ.…ë#..‹.x
    7C911F82 FF FF FF 89 39 89 4F 04 3B F9 75 2F 0F B7 0E 8B ÿÿÿ‰9‰O.;ùu/.·.‹
    7C911F92 D1 C1 EA 03 89 95 40 FE FF FF 83 E1 07 33 FF 47 ÑÁê.‰•@þÿÿƒá.3ÿG
    7C911FA2 D3 E7 89 BD 50 FF FF FF 8D BC 1A 58 01 00 00 33 Ó牽Pÿÿÿ.¼.X...3
    454340FF ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543410F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543411F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543412F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543413F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543414F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543415F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543416F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543417F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543418F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    4543419F ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    454341AF ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ????????????????
    Call stack:
    NTDLL! 7c911f52()
    MSVCRT! 77c2c3c9()
    MSVCRT! 77c2c3e7()
    MSVCRT! 77c2c42e()
    FNDCORE! 7aa6c96e()
    FNDCORE! 7aa9ae36()
    WFMLRGSM! 004011ea()
    WFMLRGSM! 00401567()
    WFMLRGSM! 0040411d()
    KERNEL32! 7c816fd7()
    I've also got this error when I:
    Bring up the tutorial on making Oracle Forms.
    Any ideas on how to make this error go away?
    Thanks

    Visual C++ Help, About, gives:
    Visual C++ 6.0
    BTW, Service Pack 3 that you mentioned in the other thread:
    Re: Install of apps 11.5.8 on Windows - Problems with PreReqs
    Is it the service pack for XP? Or, for C++?
    Windows Event Viewer logs:
    EvntAgnt
    TraceFileName parameter not located in registry; Default trace file used is .
    TraceLevel parameter not located in registry; Default trace level used is 32.
    TraceFileName parameter not located in registry; Default trace file used is .
    TraceLevel parameter not located in registry; Default trace level used is 32.
    OracleFormsServer-Form
    The description for Event ID ( 0 ) in Source ( OracleFormsServer-Forms60TEST ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: OracleFormsServer-Forms60TEST Started.
    Here are the files I found:
    OracleApps@green /cygdrive/c/oapps11
    $ find . -type f | grep -i "adadmin"
    ./testappl/ad/11.5.0/bin/adadmin.exe
    ./testappl/ad/11.5.0/lib/adadmin.obj
    ./testappl/ad/11.5.0/res/adadmin.res
    To relink, what do I do? Shut everything down, and run the exe?
    Thanks a lot!

  • Why do I get the Application Error jqsnotify.exe-Application Error. The memory could not be read?

    Why do I get this error message every time i opened up Firefox saying: jqsnotify.exe-Application Error and then at the bottom line it says: The instruction at "0x5ff3d322"referenced memory at " 0xe41203c3". The memory could not be "read". Click on OK to terminate the program.
    == This happened ==
    Every time Firefox opened
    == I recently renewed and installed the CA Security Suite and un-installed Firefox and re-installed it again.

    System restore did it for me........!!!! It's gone and I don't miss it one bit.....!!!! May be one of those untraceable tricks that hackers use to irritate people.....Some security programs can identify these things ,but the perps usually use bogus addresses to send them anyway...Cyber criminals SUCK....<u>That is right ,I said that....</u> and they should be jailed and fined and suspended from internet usage all over the globe....
    Reverend K.
    CEO,FOUNDER,Site Editor,
    http://WWW.CCCINTL.NET

Maybe you are looking for

  • [SOLVED] Blank screen after SLiM login

    Hello everyone, I'm very new to Arch as of a few days ago and I have been attempting to set it up in just about all the free time I can spare. I think I've spent about 20 hours total trying to get things up and running. I am attempting to run Arch wi

  • Macbook mid-2007 cracked Edge

    Does Apple still replace or repair Mid-2007 Macbooks? My has been cracked and i did not know that Apple was replacing them, should had been some kind of notice or i must had missed it.

  • Settings reseted in some programs

    It now happend the third time that some of my settings where resetted. My emails in Thunderbird dissappeard also did my Dock configuration my iCal events and my iTunes Library. One time even my Dektop was resetted. Is there any way to get the old stu

  • How to identify undefined classification material list from material master

    Hi , 1. I would like to identify the materials which is not having classification view from material master. 2. how to maintain the same in mass transaction. kindly give replies for the same. Thanks, Hari

  • Lightroom CC will not run

    I have been using Light room 5.7 for a while now, and been very productive while doing so, now I have upgraded to CC and it does not run ! it will not even open ? I have followed all the steps described on the help page, sign out, sign in, uninstall