JFileChooser causes "java.exe - Application Error"

Hi,
When I'm closing an JFileChooser dialog (by e.g. pressing ok or cancel) a second or so later my JVM terminates with the error message "java.exe - Application Error. The instruction at "0*6d0ea46e" referenced a memory at "0x00000000". The memory could not be "read". Click on OK to treminate the program".
I turned on verbose output from the JVM and the last printout was:
[Loaded javax.swing.Autoscroller from C:\Program Files\Java\jdk1.5.0\jre\lib\rt.jar]
[Dynamic-linking native method sun.awt.windows.WComponentPeer.removeNativeDropTarget ... JNI]
result 1
[Dynamic-linking native method sun.awt.windows.WFramePeer.getState ... JNI]
[Loaded java.awt.EventDispatchThread$StopDispatchEvent from C:\Program Files\Java\jdk1.5.0\jre\lib\rt.jar]
[Dynamic-linking native method sun.awt.windows.WToolkit.shutdown ... JNI]
No exception is shown.
I have uninstall all old JVMs and reinstalled JDK 5.0. This does not help.
This simple program causes the termination of the JVM:
public static void main(String[] args) {
System.out.println("0");
JFileChooser fileChooser = new JFileChooser();
System.out.println("1");
int result = -2;
try {
result = fileChooser.showOpenDialog(null);
} catch (HeadlessException e1) {
e1.printStackTrace();
System.out.println("result " + result);
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("2");
I receive the printout "result" but not "2".
I appriciate any help!
BR
/Marcus

No, this is very bad. Any time you see a message like this mentioning a memory address, it means that java, not you, has crashed. There's no way for you to fix this. The only thing you can try is to work around it.
My suggestions:
1. Report it to Sun. Make sure you include your system info (processor, memory, computer manufacturer) and what version of java you're using
2. Try downloading and installing a different version of java

Similar Messages

  • Java.exe - Application error. The instruction at "0x504c42b8" referenced memory at "0x00000009".The memory cannot be "read".

    Our production application is experiencing the following error with increasing
    frequency.
    Windows 2000 Dialog Box:
    java.exe - Application error.
    The instruction at "0x504c42b8" referenced memory at "0x00000009".The memory cannot
    be "read".
    Click on OK to terminate program.
    Does anybody know the cause and solution to this problem?
    We're using WL 5.1.0 sp11 jvm version 1.2.2_007
    However, searching the web indicates the error message occurs with a variety of
    configurations.
    [javaError.gif]

    John Slaman wrote:
    >
    Our production application is experiencing the following error with
    increasing frequency.
    Windows 2000 Dialog Box:
    java.exe - Application error.
    The instruction at "0x504c42b8" referenced memory at "0x00000009".The
    memory cannot be "read".
    Click on OK to terminate program.
    Does anybody know the cause and solution to this problem?
    We're using WL 5.1.0 sp11 jvm version 1.2.2_007
    However, searching the web indicates the error message occurs with a
    variety of configurations.I believe this is a memory flaws problem, cannot read memory can be in 2
    ways: either the address has been allocated (reserved) by some other
    resources or the address specified is not valid (phantom lookup).
    Try to get a higher version of WLS.
    Thanks,
    Neo Gigs
    "Follow the white rabbit..."

  • Jav.exe - application error

    The software I am using needs to run a Java virtual machine, and requires jre1.2.2. However when it tries to launch java I get the following error
    Java.exe application error
    The instruction at "0x500bf874" referenced memory at "0x00000e7f". The memory could not be "read"
    Click OK to terminate
    CLick on cancel to deug.
    Any ideas what is causing this?

    What OS are you using?
    What exact version of the JRE 1.2.2 are you using?
    I remember this error with Win2000 and an old 1.2.2 jre. Try to download the latest one (1.2.2_013).
    http://java.sun.com/products/jdk/1.2/download.html
    hope this help.

  • Java.exe-Application Error

    Hi,
    There is a runtime error
    java.exe - application error - the
    instruction at "0x5006f60a" referenced memory at "0x08f20528". The memory
    could not be "written"
    The application was performing well, but now there is an runtime error which gives the above statement.
    I re-installed the java.exe , but the same error exists.
    Is there any solution for it.?
    Kindly help.
    Regards,
    vidhya

    Windows, eh? Ask Bill if he can resolve it.
    ***Annie***

  • Java.exe - Application error. memory cannot be "read".

    Hi
    I am facing this problem in a production server. This error happens once in a while.
    java.exe - Application error. The instruction at "0x0803de14" referenced memory at "0x00000000".The memory cannot be "read".
    I am using WL 8.1.4, JDK 1.4.2_08. Server is Windows Server 2003R2 (we have tried with Windows 2003 also).
    LAst week, in fact, we have reformatted the production server and reinstall the software and deploy again but still same results.
    I have created the WL domains on another app server (but still pointing to the same DB) but still having the problem.
    Any one got any clue. Many thanks.
    Edited by yewloon at 05/30/2007 12:36 AM

    how many instances do you have ? what are you trying to deploy (war,jar or ear)? how do you access the application ?, I mean do you go through any webserver ?, have you configured the webserver plugin correctly ?

  • 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.

  • IKernel.exe - Application Error

    I downloaded j2sdk1.4.1_02 yesterday and installed it on windows XP. At the very end of the installation I get an error window saying:
    IKernel.exe - Application Error
    The instruction at "0x771c741a" referrenced memory at "0x00168c8". The memory could not be "read".
    Click on OK to terminate the program
    I have previously been running j2sdk-1_3_1_01 which has worked fine for me. But I am having problems with the new java program. We are working on a team project at University rotating graphs. But I can not seem to get the code that works at the University to run on my home PC.
    The error I am getting when i type "java ImageViewerFrame"
    Exception in thread "main" java.lang.NoClassDefFoundError: ImageViewerFrame
    This class does have a main method though.
    I guess my question is, has the Application Error above caused java to mess up somehow?
    I have set up all the PATH and CLASSPATH variables in XP as far as i can see correctly. I am just stuck for ideas.
    Thanks in Advance
    Mike

    Hello again... I'm still stuck
    Just finished installing and no error this time after the install, but after trying to run my "java ImageViewerFrame" class again i recieved this:
    C:\Documents and Settings\Mike Costen\Desktop\Mar27d>java ImageViewerFrame
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x6D1C369C
    Function=Java_sun_awt_font_NativeFontWrapper_registerFonts+0x14BC
    Library=C:\j2sdk1.4.1_02\jre\bin\fontmanager.dll
    Current Java thread:
    at sun.awt.font.NativeFontWrapper.registerFonts(Native Method)
    - locked <06B95D48> (a java.lang.Class)
    at sun.java2d.SunGraphicsEnvironment.addPathFonts(SunGraphicsEnvironment
    .java:736)
    at sun.java2d.SunGraphicsEnvironment.registerFonts(SunGraphicsEnvironmen
    t.java:587)
    at sun.java2d.SunGraphicsEnvironment.access$100(SunGraphicsEnvironment.j
    ava:49)
    at sun.java2d.SunGraphicsEnvironment$2.run(SunGraphicsEnvironment.java:2
    09)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.java2d.SunGraphicsEnvironment.loadFonts(SunGraphicsEnvironment.ja
    va:203)
    - locked <02F15300> (a sun.awt.Win32GraphicsEnvironment)
    at sun.java2d.SunGraphicsEnvironment.mapFontName(SunGraphicsEnvironment.
    java:451)
    at java.awt.Font.initializeFont(Font.java:313)
    at java.awt.Font.<init>(Font.java:345)
    at sun.awt.windows.WDesktopProperties.setFontProperty(WDesktopProperties
    .java:148)
    - locked <02A60000> (a sun.awt.windows.WDesktopProperties)
    at sun.awt.windows.WDesktopProperties.getWindowsParameters(Native Method
    at sun.awt.windows.WDesktopProperties.<init>(WDesktopProperties.java:56)
    at sun.awt.windows.WToolkit.initializeDesktopProperties(WToolkit.java:86
    5)
    at java.awt.Toolkit.getDesktopProperty(Toolkit.java:1533)
    - locked <02F12B78> (a sun.awt.windows.WToolkit)
    at sun.awt.shell.ShellFolder.<clinit>(ShellFolder.java:171)
    at javax.swing.filechooser.FileSystemView.getRoots(FileSystemView.java:3
    24)
    at javax.swing.filechooser.WindowsFileSystemView.getHomeDirectory(FileSy
    stemView.java:625)
    at javax.swing.plaf.metal.MetalFileChooserUI.installComponents(MetalFile
    ChooserUI.java:213)
    at javax.swing.plaf.basic.BasicFileChooserUI.installUI(BasicFileChooserU
    I.java:130)
    at javax.swing.plaf.metal.MetalFileChooserUI.installUI(MetalFileChooserU
    I.java:152)
    at javax.swing.JComponent.setUI(JComponent.java:449)
    at javax.swing.JFileChooser.updateUI(JFileChooser.java:1700)
    at javax.swing.JFileChooser.setup(JFileChooser.java:345)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:320)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:273)
    at ImageViewerFrame.<init>(ImageViewerFrame.java:30)
    at ImageViewerFrame.main(ImageViewerFrame.java:227)
    Dynamic libraries:
    0x00400000 - 0x00406000 C:\j2sdk1.4.1_02\bin\java.exe
    0x77F50000 - 0x77FF9000 C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F45000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E5B000 C:\WINDOWS\system32\ADVAPI32.dll
    0x77CC0000 - 0x77D35000 C:\WINDOWS\system32\RPCRT4.dll
    0x77C10000 - 0x77C63000 C:\WINDOWS\system32\MSVCRT.dll
    0x6D340000 - 0x6D46A000 C:\j2sdk1.4.1_02\jre\bin\client\jvm.dll
    0x77D40000 - 0x77DCD000 C:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000 C:\WINDOWS\system32\GDI32.dll
    0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll
    0x6D1E0000 - 0x6D1E7000 C:\j2sdk1.4.1_02\jre\bin\hpi.dll
    0x6D310000 - 0x6D31E000 C:\j2sdk1.4.1_02\jre\bin\verify.dll
    0x6D220000 - 0x6D239000 C:\j2sdk1.4.1_02\jre\bin\java.dll
    0x6D330000 - 0x6D33D000 C:\j2sdk1.4.1_02\jre\bin\zip.dll
    0x6D000000 - 0x6D105000 C:\j2sdk1.4.1_02\jre\bin\awt.dll
    0x73000000 - 0x73023000 C:\WINDOWS\System32\WINSPOOL.DRV
    0x76390000 - 0x763AA000 C:\WINDOWS\System32\IMM32.dll
    0x771B0000 - 0x772CA000 C:\WINDOWS\system32\ole32.dll
    0x6D190000 - 0x6D1E0000 C:\j2sdk1.4.1_02\jre\bin\fontmanager.dll
    0x73760000 - 0x737A5000 C:\WINDOWS\System32\ddraw.dll
    0x73BC0000 - 0x73BC6000 C:\WINDOWS\System32\DCIMAN32.dll
    0x73940000 - 0x73A07000 C:\WINDOWS\System32\D3DIM700.DLL
    0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58C000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C07000 C:\WINDOWS\system32\VERSION.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL
    Local Time = Fri Mar 28 17:36:38 2003
    Elapsed Time = 9
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode)
    # An error report file has been saved as hs_err_pid288.log.
    # Please refer to the file for further information.
    C:\Documents and Settings\Mike Costen\Desktop\Mar27d>
    i thought that because i had no errors on install that my problem would be solved, but it doesnt appear to have been.
    Thanks again.
    Mike

  • Why on close am I geting " firefox.exe -Application error - The memory could not be "written" "?

    Why on close am I geting " firefox.exe -Application error "The instruction at "0x00000000" reference menory at "0x00000000". The memory could not be "written" Click OK to terminate."?
    This is on Window XP
    A program White Smoke was loaded into this unit about 3 month ago and a popup to buy started appearing 1 week ago. I unistalled the program and i found virus that was removed.
    The unit will not allow a system restore also.

    You do not need to start Firefox to disable the Java Quick Starter, you can do that via the Java Control Panel (Control Panel > Java > Advanced)
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • WINWORD.EXE -Application Error The application was unable to start correctly (0xc0000142). Click ok to close the application

    HI 
    when i am trying to open MSWord following message pop up and i can't open MSword any more:
    WINWORD.EXE -Application Error The application was unable to start correctly (0xc0000142). Click ok to close the application.
    Please advise 

    Hi,
    Does Word start in Safe Mode?
    Press Win key + R, type "winword.exe /safe" in the blank box, press Enter.
    If Word can start in Safe Mode, the issue should be related to 3rd-party add-ins, disable the suspicious add-ins to determine which one caused the problem.
    You can also try repairing Office from Control Panel -> Programs and Features, check if this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • Win7 /Office Updates April 2015 - userinit.exe - Application Error : The application was unable to start correctly (0xc0000018)

    Hi all,
    After updating our acceptence Windows 7 SP1 clients (april updates). We are unable to login the machine.
    Error: userinit.exe - Application Error : The application was unable to start correctly (0xc0000018)
    After rebooting the machine 2times I'm able to login. When I shutdown the machine at the next boot i'm getting the same error again and i'm not able to logon.
    I have no idea where to start. One by one uninstalling updates isn't an option because after a reboot it seems ok.
    Any idea's? Help is welcome.
    The installed updates:
    1. Update (Missing): Update for Microsoft OneDrive for Business (KB2956185) 32-Bit Edition (04e403da-693b-4b76-a7ff-7807aaa8e82b, 200) WUAHandler 15-4-2015 10:35:12 5068 (0x13CC)
    2. Update (Missing): Update for Microsoft Access 2013 (KB2965276) 32-Bit Edition (1292d1c5-e57a-479c-827a-bd91d26995fc, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    3. Update (Missing): Update for Microsoft OneNote 2013 (KB2965264) 32-Bit Edition (161aacb2-973c-4042-8a08-2d7912f46e62, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    4. Update (Missing): Update for Microsoft Outlook 2013 (KB2965270) 32-Bit Edition (216a01f6-8209-42e2-aefc-95cadf8c95ee, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    5. Update (Missing): Update for Skype for Business 2015 (KB2889853) 32-Bit Edition (2510db79-26bb-447c-b2fb-687cb494b0d8, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    6. Update (Missing): Update for Microsoft Project 2013 (KB2965279) 32-Bit Edition (2c49d156-cea9-432f-82c4-3f6b48c8c0ca, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    7. Update (Missing): Update for Microsoft Office 2013 (KB2965262) 32-Bit Edition (40fe3b7e-3e2d-4c11-bf5e-3139196057e0, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    8. Update (Missing): Security Update for Microsoft Word 2013 (KB2965224) 32-Bit Edition (59d17ded-907b-4162-8121-f1ce0c47023c, 201) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    9. Update (Missing): Definition Update for Microsoft Office 2013 (KB2965273) 32-Bit Edition (5bd24951-9c92-42d7-a17a-6eaa4a918dca, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    10. Update (Missing): Update for Microsoft Office 2013 (KB2965218) 32-Bit Edition (5db38391-2220-412f-83ac-28366ac06dd6, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    11. Update (Missing): Update for Microsoft Office 2013 (KB2965267) 32-Bit Edition (6fb5843a-cb0d-4bcb-9be1-4feb3c740681, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    12. Update (Missing): Update for Microsoft Office 2013 (KB2965255) 32-Bit Edition (91fea44d-b1b2-43a3-a82f-b02e56d3d216, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    13. Update (Missing): Update for Microsoft Office 2013 (KB2965268) 32-Bit Edition (9dd67b4e-59e4-40b0-b5c8-7dcabd770d66, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    14. Update (Missing): Update for Microsoft Office 2013 (KB2825678) 32-Bit Edition (a5bf824c-7e5b-49bf-9d36-145c80221c74, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    15. Update (Missing): Update for Microsoft Outlook Social Connector 2013 (KB2965257) 32-Bit Edition (abab9d22-a65e-444e-8196-fcceba0aa7b3, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    16. Update (Missing): Update for Microsoft Lync 2013 (KB2889923) 32-Bit Edition (c35eb1f8-5ee7-4192-9ad0-1ae72315ac7e, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    17. Update (Missing): Update for Microsoft Excel 2013 (KB2965275) 32-Bit Edition (ca2c6772-706d-4a4a-a68d-78bbeaa3f56c, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    18. Update (Missing): Update for Microsoft Office 2013 (KB2880487) 32-Bit Edition (cf0b67db-b547-489f-a220-4592d68823b2, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    19. Update (Missing): Update for Microsoft PowerPoint 2013 (KB2965256) 32-Bit Edition (d1b0c046-1d5b-4f6b-afe7-68a863fb7fe2, 200) WUAHandler 15-4-2015 10:35:14 5068 (0x13CC)
    1. Update (Missing): Security Update for Windows 7 for x64-based Systems (KB3046306) (05411874-4d1f-44c4-8aad-dc84726878c9, 202) WUAHandler 15-4-2015 10:15:25 2932 (0x0B74)
    2. Update (Missing): Security Update for Windows 7 for x64-based Systems (KB3046482) (11ece05f-164c-4a7c-9f02-9379c61e2e23, 203) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    3. Update (Missing): Cumulative Security Update for Internet Explorer 10 for Windows 7 for x64-based Systems (KB3038314) (2be48962-5314-484e-a7e8-16f4679dfea3, 202) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    4. Update (Missing): Update for Windows 7 for x64-based Systems (KB2990214) (45f40ba9-5687-4415-85c7-68198f223f0f, 202) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    5. Update (Missing): Security Update for Microsoft .NET Framework 4.5, 4.5.1 and 4.5.2 on Windows 7, Vista, Server 2008, Server 2008 R2 x64 (KB3037581) (6c8c0ac4-f40b-4e4b-aa83-1694fe0dbec2, 201) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    6. Update (Missing): Security Update for Windows 7 for x64-based Systems (KB3045685) (ab4e2d11-37f2-4f64-b7e1-11e5ca25ce2a, 201) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    7. Update (Missing): Security Update for Microsoft .NET Framework 3.5.1 on Windows 7 and Windows Server 2008 R2 SP1 for x64-based Systems (KB3037574) (b9d30936-8e3b-4728-988e-78cc39aec684, 202) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    8. Update (Missing): Security Update for Windows 7 for x64-based Systems (KB3042553) (cf426941-6ec7-41d2-99ce-710d4ddd543b, 203) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    9. Update (Missing): Security Update for Windows 7 for x64-based Systems (KB3045999) (e1107158-3e97-4c23-801c-ede494f9df4a, 202) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    10. Update (Missing): Security Update for Windows 7 for x64-based Systems (KB3046269) (ed46d995-c9fb-41e2-94df-146d97d47d07, 201) WUAHandler 15-4-2015 10:15:26 2932 (0x0B74)
    1. Update (Missing): Windows Malicious Software Removal Tool x64 - April 2015 (KB890830) (1de9e76a-4e0b-4ee3-b2b2-cccd08f4ff59, 200) WUAHandler 15-4-2015 10:12:18 2768 (0x0AD0)

    Hi Tim,
    Uninstalling
    KB3045999 works as a workaround like Wastashi said. We too have this problem.
    @Karen Hu: Startup repair didn't find anything here and this is probably because the system boots properly but only after a user logs in the "Error: userinit.exe - Application Error : The application was unable to start correctly (0xc0000018)"
    appears. Safe mode works however and after I disabled all the startup items and rebooted I could successfully logon once, but this could be coincidence because sometimes after a reboot you can login as pointed out by Tim NL. However a few seconds
    after I successfully logged in and saw the desktop, the pc rebooted spontaneously. Any idea what this could be causing? Virus scanner maybe?

  • Firefox.exe +application error +the application failed to initialize properly (0x0150004) +click on OK to terminate the application.

    Win XP Home SP2
    Installed Firefox, but receive the following error message:
    firefox.exe +application error +the application failed to initialize properly (0x0150004) +click on OK to terminate the application.
    Have uninstalled and reinstalled several times, but same message. Firefox won't even open.

    Usually someone has been down the track before and occasionally they post some useful details which may help others to investigate and/or eliminate factors in their particular case.
    This AccessibleMarshal.dll error seems to have a long history --- posts from 2006 with early Firefox versions had issues similar to yours.
    There is a link and an excerpt below which could be worth checking in your case,
    particularly since it mentions the problem would occur on a clean install (no previous instance of Firefox on the system and Windows before Vista --??)
    Have a look here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=712960
    and the post to read:
    '''Mark Banner (:standard8) 2011-12-22 12:55:21 PST'''
    "Created attachment 583905 [details] [diff] [review]
    Add the Win32 redistributable directory to the mozconfigs"
    "Somehow we missed shipping the Win32 Redistributables from Visual C++. We didn't detect this as it would only show on Windows versions less than Vista, and you'd probably only see it if you had a completely clean install, and you didn't have the dlls installed elsewhere (as it appears my XP system does)."
    "If you're seeing this then you want to copy the following files from a Firefox installation:
    Microsoft.VC80.CRT.manifest
    msvcm80.dll
    msvcp80.dll
    msvcr80.dll
    The patch I'm attaching updates our configuration files to specify the Win32 redistribution directory, which will then cause the build system to include the files in the build."
    .... ends....
    The earlier 2006 instances also had the same issue in some cases:
    forums.frontmotion.com/viewtopic.php?f=10&t=393
    Hope this progresses the search and resolution.
    Cheers

  • Acrobat 8.1 Pro Error AcrobatInfo.exe - Application Error

    Ever since updating to Acrobat Pro 8.1, I keep getting an error message.
    Font Capture: AcrobatInfo.exe - Application Error
    The Instruction at "0x03da593c". The memory could not be written.
    The error pops up several minutes after closing Acrobat. I wonder if it is from a .pdf from across the network.
    Doesn't cause a crash but it is getting annoying.

    Jeremy,
    All I could find was the REG file that was included on that link's site. If you want to trust this, just copy the text between the ======== and save as a .REG file, then execute the file. I am taking no responsibility for this file or what it may (or may not) do to your computer. It is simply the REG file I got from that site. It's up to you whether you use it or not.
    It's been so long now since I used Jochen's method that I can't remember for sure, but I believe I also tracked down the "AcrobatInfo.exe" file and deleted it (probably while in safe mode).
    ===========================================
    REGEDIT4
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18 \Components\21C0FC0AB3C24344FB30C34266AA5E09]
    REGEDIT4
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{98D9A6F1-4696-4B5E-A2E8-36B3F9C1E12C}]
    REGEDIT4
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\AcrobatInfo.exe]
    REGEDIT4
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Low Rights\ElevationPolicy\{AC76BA86-1033-0000-7760-000000000002}]
    REGEDIT4
    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AcroExch.Document]
    "BrowseInPlace"=-
    REGEDIT4
    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AcroExch.Document.7]
    "BrowseInPlace"=-
    ============================================
    Good luck.

  • Concurrent Manager gives FNDLIBR.exe - Application Error in Windows 2003.

    Hi,
    I upgraded our Oracle EBS 11.0.3 on HP-UX to EBS 11.5.10 on Windows 2003 (Oracle Financials and Order Management)
    We have one issue which I am not able to resolve for a long time.
    1) 2-3 times a day Send Notifications for Purchasing Documents concurrent program Complets with Errors and this is causing FNDLIBR.exe error.
    2) This causes a pop-up window to appear in the Servers Console with FNDLIBR.exe - Application Error and they have to click OK to get rid of this pop-up window.
    3)Send Notifications for Purchasing Documents concurrent requests usually completes in less than a minute but one or two these requests run for 2-3 hours and these are the ones that are causing FNDLIBR.exe issue.
    4) Patch 5567785 was applied but still we are getting the same FNDLIBR.exe issue.
    5) If we don't click OK in the FNDLIBR.exe popup windows on the server's console and if it accumulates for 2-3 days, then all the concurrent requests go to Pending and starts Running only after click OK to clear all the FNDLIBR.exe pop-ups.
    5) The event viewer shows:
    Faulting application FNDLIBR.exe, version 0.0.0.0, faulting module ntdll.dll, version 5.2.3790.4455, fault address 0x0002a413.
    Faulting application FNDLIBR.exe, version 0.0.0.0, faulting module NLSRTL33.DLL, version 0.0.0.0, fault address 0x0001d570.
    Faulting application FNDLIBR.exe, version 0.0.0.0, faulting module SQLLIB80.DLL, version 0.0.0.0, fault address 0x00009ef0.
    6) Send Notifications for Purchasing Documents concurrent requests runs POXWARMG.sql
    7) This documented in Bug 5841575 - SEND NOTIFICATIONS FOR PURCHASING DOCUMENTS FAILING INTERMITANTLY
    Please suggest a way to workaround this issue.Upgrading to 11.5.10.2 is ruled out by the users. I opened SR but not very useful.
    Rgds,
    Thiru

    Hussein,
    All Conc Rgsts are working fine. Only this one is failing 2-3 times a day. This is scheduled to run every 10 mins.
    Is it really required to relink and give a try?
    Rgds
    Thiru

  • Whenever I use facebook I'm getting this error message [Java Script Application] Error: options is undefined whenever I click on a link. What can I do to fix this problem? Easy step by step instructions please.

    When I use facebook, I keep getting this message [Java Script Application] Error: options is undefined whenever I try to return something, click on a link, or message, open a game, etc. ... I have Windows 7, addons of greasemonkey and better facebook (which seems to have disappeared)
    == URL of affected sites ==
    http://www.facebook.com/reqs.php#!/?ref=home

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Explorer.exe application error "Memory could not be written" ?! OS seems stuck now

    (Model # m6-k010dx) My new laptop after 13 months automatically updated from windows 8 to 8.1 after I had said 'no' as many times as it allowed. After the update my files are still on it and most things are there but it seems 'stuck' and the orange screen keeps flickering like start to desktop so fast you usually can't even click anything in time to open it before it switches. I was told that the drivers probably needed to be updated first (eventhough I am pretty sure I kept up with all my other updates that popped up the only one I postponed was 8.1) and that I should refresh it, so I lose my programs but keep my files. I'm so sad I now lost Photoshop cs6 and my prefered antivirus (webroot) But anyway back to 8.0, it functioned fine aside from annoying pop ups to install norton antivirus no thank you, i bought webroot again. no updates were available.
    I went to HP.com drivers update, searched for my pc and its correct update, and next thing I know is it's installing windows 8.1....??!
    So again when it's 'done' and reboots, the screens flicker forever. I shut down, restart, same. so I put it back to windows 8...it will install 8.1 on its own any day now.. Please help asap!!!
    Also forgot to mention when the screens are flickering, a few explorer exe application errors pop up on occaision. IE: "the instruction at 0xaa0c663c referenced memory at 0xaa0c663c. The memory could not be written. Click ok to terminate the program." was one the last time,
    and the time before it, the initial windows 8.1 update when I still had Webroot antivirus, the pop up said "the instruction at 0x9b63663c referenced memory at 0x9b63663c. The memory could not be written. Click ok to terminate the program." the other pop ups the initial time came from Webroot - IE: "This file is trying to install itself to start every time the computer turns on  C: /Windows/system32/DrvInst (dot) exe" and gives the options to block, allow once, or allow always.
    Another trying to install every time computer starts is "C: /WINDOWS/system32/wbem/WMIADAP (dot) EXE"
    and another is : "Process ID: 4244 
    Thread ID: 3460 
    Event Type: Registry 
    Access: Write
    Registry Key: /REGISTRY/MACHINE/SYSTEM/ControlSet001/Services/NDIS/IfTypes/131
    Value: IfUsedNetLuidIndices"
    I searched all of those but found nothing. How can I have a smooth update? THank you in advance

    Hi @ASAP666 ,
    Thank you for visiting the HP Support Forums and Welcome. I have looked into your issue about your HP ENVY m6-k010dx Sleekbook and trying to update to Windows 8.1. Before updating did you make sure your system was up to date with Windows. Here is something from Microsoft that might help. 
    Looking into this I have found that it is a driver issue usually associated with USB devices.
    Please note remove any and all USB devices. Disconnect all non-essential devices, as these could cause some issues.
    Plug the power adapter directly into a functioning wall outlet. Do not plug it into a power strip, surge protector, or secondary power source as this could cause and issue.
    I recommend to do this update to disable your Anti Virus or Webroot temporarily to allow the update to go through.
    Please let me know how this goes.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for