Process still running when windows are closed

Sometimes when I try to open Firefox I get a message stating that it is still running and I cannot open until I go to the task manager and end the Firefox process which is usually using several thousand kbs of RAM. What the hell is going on?

The above solution sounds like a bunch of BS. I never had to go to the file menu and select close firefox before I downloaded the latest version, version 5.0.1.
You guys a Mozilla hosed the program and ruined a good, no great thing.
FIX IT RIGHT!!!

Similar Messages

  • How to tell embedded jinitator applet is still running when window closed

    Hello, we are trying to accomplish the same thing that is mentioned in this post from Metalink. I've searched for a solution and hope someone here can help. Instead of restating the issue I think David Wilson does a good job of explaining what is needed. Can anyone please suggest a possible solution?
    From: David Wilton 07-Oct-05 01:08
    Subject: How to tell embedded jinitator applet is still running when window closed
    How to tell embedded jinitator applet is still running when window closed
    Hi,
    We run an oracle 10g forms application through 9iAS over an intranet. All users are running windows 2000 professional.
    We run separate frame = true but I would like to switch to separate frame = false
    With separate frame = true if the user clicks the outer windows "X" close button (forms mdi window) the user is prompted to save changes before the application ends.
    BUT
    when using separate frame = false
    If the user clicks the upper window "X" button (no longer form mdi window but regular browser window) the window and application is abruptly closed.
    I'm interested in using a onbeforeunload function to confirm if the user wants to close the window. This would be placed in the basejini.htm file. This could always ask if the user wants to exit or not. If they click OK then the window closes but if they click "Cancel" you are returned to the forms application exactly where you left. something like event.returnvalue="do you really want to exit?";
    However if the user exited using the normal exit form method then the applet is already closed before the onbeforeunoad event fires and there is nothing to go back to and I want the window to close automatically. This is accomplished using close.html file in post forms trigger.
    So what I want and what I think many may also want is the check if the embedded applet is still running and if so prompt the user to return to the application or continue to close. Of course If the applet is no longer running then just close because there is no reason confirm closing anymore.
    Does anyone have a html/JavaScript solution that can be placed in the jinitiator.htm file? or similar?
    Thank you
    David
    [email protected]
    From: Andrew Lenton 07-Oct-05 08:58
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    I don't know if this is exactly what you are after but you can add the following to the top of your basejini.htm file and it should prompt the user before exiting the IE window.
    <BODY %HTMLbodyAttrs%>
    %HTMLbeforeForm%
    <SCRIPT>
    <!--
    window.onbeforeunload = unloadApplet;
    function unloadApplet(){
    message = "Warning! Please exit the Java Applet prior to
    exiting the browser"
    return message;
    //-->
    </SCRIPT>
    From: Oracle, mohammed pasha 07-Oct-05 09:55
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    David,
    Well I could not understand your complete requirement.
    Refer to Note.201481.1 How to Close the Browser Window When Closing Forms And How to Simulate SeparateFrame By Javascript
    Note.115905.1 How to Close Browser Window When Closing Webforms Applet
    Kind Regards,
    Anwar
    From: David Wilton 07-Oct-05 14:37
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Thank you for your reply and yes you did not understand my question fully.
    Sorry if this is a long reply
    I am able to close the browser window using information in notes 115905.1 and 201481.1, this is not the issue. We implemented this several years ago. It is workable for both separate frame = true or false.
    It is most important to not allow the user to end their forms application by closing the windows browser, they must close using normal form exit commands.
    What I want is to have separate frame = false, the big drawback to this option is the user can exit the application and bypass all forms code by pressing the windows "X" close button. This is why we need the code as just provided by Andrew Lenton above in this thread.
    BUT Andrew's code will always prompt the user before closing the window and I do not want that. I want the user to be prompted only under scenario 2 listed below.
    Here's the 2 case scenario for exiting the application.
    1. If the user closes properly and uses exit form which fires all normal form triggers including post_form with it's call to close.html file.
    All uncommitted changes are saved or rollback and the users session is ended normally both on the database and in the application server.
    All browser windows will close, great all is good. And without Andrew's code the window will close but with Andrew's code the user will be prompted to close or not, if they select Cancel the window will remain but the applet has already ended so why prompt? ...This is what I want to avoid.
    2. In the forms app. if the user clicks the windows "X" close button with uncommitted changes. The browser just closes the changes are rollback without prompting the user to save. The users sessions are now lost and still running in the database and application server until they are timed out.
    If I use Andrew's code then the user will be prompted to continue to close or go back, if they click Cancel to go back then focus returns to the forms application and the user can continue to work. If the user clicks OK then the window closes and unfortunately their sessions are still lost until timed out.
    So what I desire is to add to Andrew's code to check if the embedded applet is still running and prompt the user to close or not accordingly.
    Something like:
    Basejini.htm like
    </HEAD>
    <SCRIPT LANGUAGE="JavaScript">
    function maximizeWindow()
    window.moveTo(0,0);
    window.resizeTo(screen.availWidth,screen.availHeight);
    function confirm(){
    If(document.embeddedapplet.closed())
    Win.opener = self;
    win.close();
    Else if
    event.returnValue = "Closing Forms Application. OK to continue?";
    </SCRIPT>
    <BODY %HTMLbodyAttrs%, onload="maximizeWindow()", onbeforeunload="confirm()">
    %HTMLbeforeForm%
    I hope this explains my requirements.
    David
    From: Oracle, Evelene Raechel 10-Oct-05 06:45
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Hi,
    Note.199928.1 How to Alert User on Closing Client's Browser Window in Webforms
    Regards,
    Rachel
    From: David Wilton 11-Oct-05 17:40
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    I'm sorry this is not helpful at all.
    Note 199928.1 is only an alert which does not stop the closing of the window and still displays as an alert if the user does close properly using exit form ... so why would you want to display the alert then?
    This is exaclty what I do not want and why I want to determine if the applet is still running before displaying any kind of message.
    David
    From: Oracle, Evelene Raechel 17-Oct-05 12:23
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Closing thread.
    Thanks,

    Hello,
    I had the same issue last year - wanting to provide a warning on closing the browser, but only if the Forms session is still running. The approach I took is described below, see also the thread where I originally posted this at Closing brower window
    Hi there,I've had a similar requirement - or rather, the two conflicting requirements: to warn when the browser is being closed, but for the app to be able to close the browser without a warning being fired.
    To always provide a warning when someone (the user or the Forms app) tries to go to a different page (e.g. your close.htm), use Javascript like:
    function confirmExit(){
    if(appletRunning==true) {
    msg="Closing this window or navigating to another page will end your SomeGreatApp session.";
    window.event.returnValue=msg;
    And make a call to confirmExit() in the onBeforeUnload event of your main page.
    You'll notice I first check an 'appletRunning' variable before displaying the warning. This Javascript variable is set to true by my app when it starts up, using an embedded Javabean that calls out to Javascript. Once that variable is set to true, then the warning will be displayed if the user tries to shut the browser by clicking on the 'x' button, or to go to a different URL.
    When my app is shutting down, it uses the same Javabean to set appletRunning back to false. It then navigates to a close.htm - which will be done without a warning being displayed.
    See Re: How can a Javabean call Javascript function of the basejpi.html?? for example code on how to call Javascript from a bean embedded in your Forms app.
    Hope these ideas help you out, it's worked for me (so far, anyway!!)
    James

  • Javaw.exe is still running when application is closed

    The application works fine. when i close the application using "x" at the top of the window the javaw.exe is still running in task manager. javaw.exe is accumulating all memory when i run the again. The same problem occurs when i run the application through jar. Any help is appreciated

    If you use
    jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    and you close de window, all your applications
    running in the JVM will be closed too because System
    exit is used. I prefer to use
    jframe.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOS
    E);
    Alejandro H.If you had read the OP, he was complaining that the JVM was still running even though he had closed his application, which meant he wanted to stop the JVM.

  • When my ipod connect to computer,windowss want me to format the ipod,and when the process is running suddenly windows said"unable to format this disk"and my ipod can't connect to itunes. anyone can help me?

    when my ipod connect to computer,windowss want me to format the ipod,and when the process is running suddenly windows said"unable to format this disk"and my ipod can't connect to itunes. anyone can help me?

    Check the iPod Hardisk, with DiskDiagnostic as posted here by tt2
    https://discussions.apple.com/message/17776595#17776595
    It wont fix your problem, but help us both, in troubleshooting, and reducing frivolous suggestions.
    If your report says high Realloc or Pending Sector, then it's time to have your hardisk replaced.
    Have a nice day!

  • I'm trying to download Flash Player to my Macbook, and it keeps on stopping in the midst of downloading and saying "you need to quit safari" even though all of my Safari windows are closed, what do I do?

    Thanks for any help

    Cofeebean wrote:
    even though all of my Safari windows are closed, what do I do?
    Keep in mind that on the Mac, even if you close all windows of an application, the application itself may still be running with no windows open. If you have closed all Safari windows, look at the Dock to see if there is a glowing dot under the Safari icon. If there is a dot, Safari is still running, so click the Dock icon and then choose Safari/Quit Safari.
    As an alternative to looking for the dot under an application in the Dock, I often use the Command-Tab keyboard shortcut to display the Application Switcher so I can see which applications are still open.
    You don't have to open Activity Monitor to quit a program unless there really is no way to way to do it from the normal interface.
    The only applications that quit when you close the window are the ones that only have one window, like System Preferences.

  • All windows are closed automatically

    Hi,
    I installed JDK 1.7.0, I created a custom java application I compiled with apache-ant-1.8.1 and when i run de application the main window are closed after 5 seconds without any user interaction. I think this is a bug of JDK release or some licensing requirements? Anyone know something about this?
    the command:
    java -version
    show:
    java version "1.7.0-ea"
    Java(TM) SE Runtime Environment (build 1.7.0-ea-b112)
    Java HotSpot(TM) Client VM (build 20.0-b01, mixed mode, sharing)
    My:
    JAVA_HOME=C:\Program Files\Java\jdk1.7.0
    PATH=...;C:\Program Files\Java\jdk1.7.0\bin;C:\Program Files\Java\jdk1.7.0\jre\bin;...
    Thanks,
    Fadel

    kevin,
    you're right, I made a small application with JPanel, JFrame and JLabel and is not closed.
    The code is this:
    package oata;
    import java.awt.*;
    import javax.swing.*;
    public class Ejemplo extends JPanel {
         public static void main (String [] args) {
              JFrame frame = new JFrame ("Ejemplo");
              JLabel jl = new JLabel("Ejemplo JLabel");
              frame.getContentPane().add(jl);
              frame.setSize(180,80);
              frame.setVisible(true);
    But that can be then closes the window in my previous project?

  • Cakewalk DAW process still runs after exit the Application (ntdll!NtWaitForSingleObject+0xa on wdmaud!CWAVRenderer::FreeResources+0x8f)

    Hi All,
    Have this issue with wdmaud driver after I close the application the process will appear to shutdown however if I try and start up a new instance of it it doesn't load.
    When I check task manager I see the process still running...
    I dumped the process and ran a finger print analysis over it and see the following:
    [code]
    0:000> k
    Child-SP          RetAddr           Call Site
    00000000`0013fb48 00007ff9`0b661148 ntdll!NtWaitForSingleObject+0xa
    00000000`0013fb50 00007ff8`fb7c8dbb KERNELBASE!WaitForSingleObjectEx+0x94
    00000000`0013fbf0 00007ff8`fb7c9280 wdmaud!CWAVRenderer::FreeResources+0x8f
    00000000`0013fc20 00007ff8`fb7c7771 wdmaud!CWAVRenderer::Shutdown+0x10
    00000000`0013fc50 00007ff8`fb7c7aed wdmaud!CMIDISynthTask::MODMClose+0x1e
    00000000`0013fc80 00007ff8`fb7bc2f4 wdmaud!SwModMessage+0xb5
    00000000`0013fcb0 00007ff9`075b6cc4 wdmaud!CBusIds::CBusIds+0x2818
    00000000`0013fcf0 00000001`403c4426 WINMMBASE!midiOutClose+0x9c
    00000000`0013fd30 00000001`403c43d4 SONARSTD+0x3c4426
    00000000`0013fd70 00000001`403c6334 SONARSTD+0x3c43d4
    00000000`0013fda0 00000001`4038748b SONARSTD+0x3c6334
    00000000`0013fdd0 00000001`405995af SONARSTD+0x38748b
    00000000`0013fe00 00000001`40596ed7 SONARSTD+0x5995af
    00000000`0013feb0 00007ff8`ec9acf4a SONARSTD+0x596ed7
    00000000`0013fee0 00000001`404aa6f6 mfc110u!AfxWinMain+0xa6
    00000000`0013ff20 00007ff9`0b9515cd SONARSTD+0x4aa6f6
    00000000`0013ff60 00007ff9`0e1343d1 kernel32!BaseThreadInitThunk+0xd
    00000000`0013ff90 00000000`00000000 ntdll!RtlUserThreadStart+0x1d
    0:000> !lmi wdmaud
    Loaded Module Info: [wdmaud]
             Module: wdmaud
       Base Address: 00007ff8fb7b0000
         Image Name: wdmaud.drv
       Machine Type: 34404 (X64)
         Time Stamp: 5215dbdc Thu Aug 22 19:37:32 2013
               Size: 3c000
           CheckSum: 39dfd
    Characteristics: 2022  perf
    Debug Data Dirs: Type  Size     VA  Pointer
                 CODEVIEW    23, 2cb28,   2bf28 RSDS - GUID: {63BD5149-2828-4F20-A000-25FBDF3C325E}
                   Age: 2, Pdb: wdmaud.pdb
                    CLSID     8, 2cb20,   2bf20 [Data not mapped]
         Image Type: MEMORY   - Image read successfully from loaded memory.
        Symbol Type: PDB      - Symbols loaded successfully from image header.
                     C:\ProgramData\dbg\sym\wdmaud.pdb\63BD514928284F20A00025FBDF3C325E2\wdmaud.pdb
        Load Report: public symbols , not source indexed
                     C:\ProgramData\dbg\sym\wdmaud.pdb\63BD514928284F20A00025FBDF3C325E2\wdmaud.pdb
    [/code]
    I've run this by the folks from Cakewalk forums and had some suggestions to try but to no avail.
    http://forum.cakewalk.com/sonarstdexe-still-runs-after-I-close-and-exit-program-m2960813.aspx
    There is nothing on this in google that I can find "wdmaud!CWAVRenderer::FreeResources+0x8f"
    Just wondering if there is anything I can do to see if I can fix my system, others in the forum can't replicate this issue...
    Would re-installing the audio driver help?  I don't want to do this unless I have to or if there are any other suggestions to try...
    Thanks in Advance
    Jim

    Hi,
    There are no physical audio or midi devices attached.  I have HP ENVY 17 j005xt Notebook PC and has built-in audio HDT High Definition Audio CODEC sound card - and has the latest available drivers for this card already installed supplied by HP
    as OEM.
    0:000> lm t n
    start end module name
    00000000`025a0000 00000000`025cc000 Stretch Stretch.ax Thu Sep 12 14:47:20 2013 (52314758)
    00000000`09760000 00000000`0979b000 MackieControl MackieControl.dll Thu Sep 12 14:56:15 2013 (5231496F)
    00000000`0e7a0000 00000000`0ed78000 TTS_1 TTS-1.dll Thu Sep 12 14:51:14 2013 (52314842)
    00000000`0f000000 00000000`0f006000 detoured detoured.dll Sat Jan 20 07:35:56 2007 (45B12BAC)
    00000000`20b60000 00000000`20b9f000 NullProxy NullProxy.dll Thu Sep 12 14:46:46 2013 (52314736)
    00000000`20bb0000 00000000`20c84000 GroovePlayer GroovePlayer.dll Thu Sep 12 14:47:08 2013 (5231474C)
    00000000`20ca0000 00000000`20d67000 SonitusFXWahwah SonitusFXWahwah.dll Thu Sep 12 14:51:05 2013 (52314839)
    00000000`24c30000 00000000`24d2e000 multivoicechorusflanger multivoicechorusflanger.dll Thu Mar 10 05:47:01 2011 (4D77CB25)
    00000000`27db0000 00000000`27f9c000 EventFilter EventFilter.dll Thu Sep 12 14:48:23 2013 (52314797)
    00000000`27fa0000 00000000`28113000 Quantize Quantize.dll Thu Sep 12 14:48:08 2013 (52314788)
    00000000`28120000 00000000`28297000 Transpose Transpose.dll Thu Sep 12 14:48:07 2013 (52314787)
    00000000`282a0000 00000000`28417000 Velocity Velocity.dll Thu Sep 12 14:47:58 2013 (5231477E)
    00000000`52d30000 00000000`52ecc000 mfc80 mfc80.dll Sat May 14 11:56:46 2011 (4DCDE15E)
    00000000`52ed0000 00000000`5342d000 mfc100 mfc100.dll Sat Jun 11 12:15:54 2011 (4DF2CFDA)
    00000000`53b60000 00000000`53c69000 msvcp80 msvcp80.dll Wed Aug 14 14:44:47 2013 (520B0B3F)
    00000000`54ab0000 00000000`54adb000 atl100 atl100.dll Sat Feb 19 10:40:35 2011 (4D5F0373)
    00000000`54b80000 00000000`54b8d000 mfc80ENU mfc80ENU.dll Sat May 14 11:57:56 2011 (4DCDE1A4)
    00000000`54b90000 00000000`54b9d000 MFC100ENU MFC100ENU.DLL Sat Jun 11 12:14:05 2011 (4DF2CF6D)
    00000000`55e70000 00000000`55f39000 msvcr80 msvcr80.dll Wed Aug 14 14:42:42 2013 (520B0AC2)
    00000000`561e0000 00000000`56206000 mdnsNSP mdnsNSP.dll Wed Aug 31 15:53:57 2011 (4E5DCC75)
    00000000`56440000 00000000`564d8000 msvcp100 msvcp100.dll Sat Feb 19 10:40:12 2011 (4D5F035C)
    00000000`564e0000 00000000`565b2000 msvcr100 msvcr100.dll Sat Feb 19 10:39:54 2011 (4D5F034A)
    00000000`64340000 00000000`6439b000 CW110Auto CW110Auto.dll Sat Dec 14 12:08:51 2013 (52ABAFA3)
    00000000`643a0000 00000000`64441000 CJLibrary CJLibrary.dll Sat Dec 14 12:08:51 2013 (52ABAFA3)
    00000000`64670000 00000000`674f7000 TTSRES110 TTSRES110.DLL Sat Dec 14 12:08:51 2013 (52ABAFA3)
    00000000`67600000 00000000`67629000 DShowProxy DShowProxy.dll Thu Sep 12 14:46:12 2013 (52314714)
    00000000`67700000 00000000`6773e000 DeWire DeWire.dll Thu Sep 12 14:46:24 2013 (52314720)
    00000000`67800000 00000000`678b7000 TTSlame TTSlame.dll Sat Feb 23 08:16:39 2008 (47BF3BB7)
    00000001`40000000 00000001`41377000 SONARSTD SONARSTD.exe Sat Dec 14 12:08:41 2013 (52ABAF99)
    00000001`80000000 00000001`800e7000 TTSlibsndfile TTSlibsndfile.dll Thu Aug 23 01:23:24 2007 (46CC54EC)
    00007ff8`e0440000 00007ff8`e0cb5000 GrooveIntlResource GrooveIntlResource.dll Sat Sep 14 15:07:03 2013 (5233EEF7)
    00007ff8`e3a00000 00007ff8`e40eb000 iZotope_Radius_x64 iZotope_Radius_x64.dll Sat Nov 09 11:34:59 2013 (527D8333)
    00007ff8`e5930000 00007ff8`e5b38000 mfcore mfcore.dll Sat Sep 21 14:43:18 2013 (523D23E6)
    00007ff8`e5b40000 00007ff8`e5b64000 RTWorkQ RTWorkQ.dll Thu Aug 22 19:45:55 2013 (5215DDD3)
    00007ff8`e5b70000 00007ff8`e5c44000 mfplat mfplat.dll Wed Oct 23 16:39:12 2013 (52676100)
    00007ff8`e5e10000 00007ff8`e6317000 McPvNs McPvNs.dll Tue Sep 10 01:07:37 2013 (522DE439)
    00007ff8`e7e20000 00007ff8`e7f28000 classicphaser classicphaser.dll Thu Mar 03 09:01:46 2011 (4D6EBE4A)
    00007ff8`ea340000 00007ff8`ea4f1000 quartz quartz.dll Thu Aug 22 20:33:45 2013 (5215E909)
    00007ff8`ec6b0000 00007ff8`ec725000 dlnashext dlnashext.dll Thu Aug 22 20:44:17 2013 (5215EB81)
    00007ff8`ec730000 00007ff8`ecc95000 mfc110u mfc110u.dll Mon Jun 10 08:08:14 2013 (51B4FCCE)
    00007ff8`ed650000 00007ff8`ed758000 tempodelay tempodelay.dll Thu Mar 03 09:02:00 2011 (4D6EBE58)
    00007ff8`edde0000 00007ff8`ee01d000 GROOVEEX GROOVEEX.DLL Thu Oct 31 05:15:42 2013 (52714CCE)
    00007ff8`f2310000 00007ff8`f2409000 compgate compgate.dll Thu Mar 03 09:01:53 2011 (4D6EBE51)
    00007ff8`f2410000 00007ff8`f26b8000 msi msi.dll Thu Aug 22 21:02:16 2013 (5215EFB8)
    00007ff8`f4c50000 00007ff8`f4c97000 PlayToDevice PlayToDevice.dll Thu Aug 22 19:07:26 2013 (5215D4CE)
    00007ff8`f4db0000 00007ff8`f4e47000 mf mf.dll Thu Aug 22 18:53:44 2013 (5215D198)
    00007ff8`f5410000 00007ff8`f5451000 CWVideoEngine CWVideoEngine.dll Sat Dec 14 11:45:07 2013 (52ABAA13)
    00007ff8`f5a70000 00007ff8`f5a8c000 DevDispItemProvider DevDispItemProvider.dll Thu Aug 22 19:58:45 2013 (5215E0D5)
    00007ff8`f6430000 00007ff8`f648e000 AUDIOKSE AUDIOKSE.dll Thu Aug 22 19:34:34 2013 (5215DB2A)
    00007ff8`f6730000 00007ff8`f6766000 EhStorShell EhStorShell.dll Thu Aug 22 20:48:59 2013 (5215EC9B)
    00007ff8`f6f80000 00007ff8`f6f9b000 mpr mpr.dll Thu Aug 22 20:05:47 2013 (5215E27B)
    00007ff8`f7900000 00007ff8`f7bb0000 actxprxy actxprxy.dll Thu Oct 10 22:26:52 2013 (52568EFC)
    00007ff8`f86c0000 00007ff8`f8772000 ntshrui ntshrui.dll Thu Aug 22 19:12:10 2013 (5215D5EA)
    00007ff8`f8c40000 00007ff8`f8c4e000 npmproxy npmproxy.dll Thu Aug 22 21:30:46 2013 (5215F666)
    00007ff8`f8c50000 00007ff8`f8c64000 devrtl devrtl.dll Thu Aug 22 20:02:51 2013 (5215E1CB)
    00007ff8`f8dd0000 00007ff8`f8e76000 PortableDeviceApi PortableDeviceApi.dll Thu Aug 22 19:12:41 2013 (5215D609)
    00007ff8`f9070000 00007ff8`f907b000 pcacli pcacli.dll Thu Aug 22 21:32:05 2013 (5215F6B5)
    00007ff8`f9100000 00007ff8`f9108000 ksuser ksuser.dll Thu Aug 22 19:53:59 2013 (5215DFB7)
    00007ff8`fb620000 00007ff8`fb630000 cscapi cscapi.dll Thu Aug 22 20:01:07 2013 (5215E163)
    00007ff8`fb7b0000 00007ff8`fb7ec000 wdmaud wdmaud.drv Thu Aug 22 19:37:32 2013 (5215DBDC)
    00007ff8`fd130000 00007ff8`fd139000 rasadhlp rasadhlp.dll Thu Aug 22 20:03:37 2013 (5215E1F9)
    00007ff8`fd140000 00007ff8`fd17d000 netprofm netprofm.dll Thu Aug 22 19:50:53 2013 (5215DEFD)
    00007ff9`010a0000 00007ff9`010bb000 msacm32 msacm32.dll Thu Aug 22 20:03:07 2013 (5215E1DB)
    00007ff9`012a0000 00007ff9`01365000 winhttp winhttp.dll Thu Aug 22 19:41:43 2013 (5215DCD7)
    00007ff9`01aa0000 00007ff9`01ab0000 sfc_os sfc_os.dll Thu Aug 22 21:35:15 2013 (5215F773)
    00007ff9`027d0000 00007ff9`027f5000 EhStorAPI EhStorAPI.dll Thu Aug 22 20:55:57 2013 (5215EE3D)
    00007ff9`02ec0000 00007ff9`0301f000 urlmon urlmon.dll Tue Nov 26 17:39:41 2013 (5294422D)
    00007ff9`03180000 00007ff9`03197000 samcli samcli.dll Thu Aug 22 20:03:20 2013 (5215E1E8)
    00007ff9`03930000 00007ff9`0395a000 thumbcache thumbcache.dll Sat Sep 21 15:02:43 2013 (523D2873)
    00007ff9`03960000 00007ff9`0396d000 msdmo msdmo.dll Thu Aug 22 19:53:44 2013 (5215DFA8)
    00007ff9`03ba0000 00007ff9`03d04000 propsys propsys.dll Thu Aug 22 21:44:18 2013 (5215F992)
    00007ff9`04100000 00007ff9`0465f000 mfc110 mfc110.dll Mon Jun 10 08:08:11 2013 (51B4FCCB)
    00007ff9`049c0000 00007ff9`049f0000 ntmarta ntmarta.dll Thu Aug 22 20:03:15 2013 (5215E1E3)
    00007ff9`04d60000 00007ff9`04fa3000 msxml6 msxml6.dll Thu Aug 22 19:59:38 2013 (5215E10A)
    00007ff9`04fc0000 00007ff9`04fd4000 dhcpcsvc6 dhcpcsvc6.DLL Thu Aug 22 20:05:21 2013 (5215E261)
    00007ff9`04ff0000 00007ff9`05009000 dhcpcsvc dhcpcsvc.dll Thu Aug 22 20:04:10 2013 (5215E21A)
    00007ff9`050b0000 00007ff9`05117000 FWPUCLNT FWPUCLNT.DLL Thu Aug 22 19:43:15 2013 (5215DD33)
    00007ff9`054a0000 00007ff9`05749000 iertutil iertutil.dll Tue Nov 26 20:41:06 2013 (52946CB2)
    00007ff9`05750000 00007ff9`05990000 wininet wininet.dll Tue Nov 26 18:07:31 2013 (529448B3)
    00007ff9`05a00000 00007ff9`05a1e000 samlib samlib.dll Thu Aug 22 20:03:31 2013 (5215E1F3)
    00007ff9`05b00000 00007ff9`05bd4000 msvcr110 msvcr110.dll Tue Nov 06 14:22:22 2012 (5098826E)
    00007ff9`05be0000 00007ff9`05c87000 msvcp110 msvcp110.dll Tue Nov 06 14:22:43 2012 (50988283)
    00007ff9`06420000 00007ff9`0642a000 winnsi winnsi.dll Thu Aug 22 20:05:45 2013 (5215E279)
    00007ff9`06440000 00007ff9`06469000 IPHLPAPI IPHLPAPI.DLL Thu Aug 22 20:05:30 2013 (5215E26A)
    00007ff9`064a0000 00007ff9`064c3000 oledlg oledlg.dll Thu Aug 22 21:21:08 2013 (5215F424)
    00007ff9`06710000 00007ff9`06797000 dsound dsound.dll Thu Aug 22 21:16:25 2013 (5215F309)
    00007ff9`06a20000 00007ff9`06a96000 AudioSes AudioSes.dll Tue Sep 17 14:38:05 2013 (5237DCAD)
    00007ff9`06cf0000 00007ff9`06d06000 wkscli wkscli.dll Thu Aug 22 20:02:18 2013 (5215E1AA)
    00007ff9`07190000 00007ff9`071f3000 oleacc oleacc.dll Thu Aug 22 19:47:27 2013 (5215DE2F)
    00007ff9`07200000 00007ff9`0727b000 winspool winspool.drv Thu Aug 22 19:13:30 2013 (5215D63A)
    00007ff9`073c0000 00007ff9`0759f000 DWrite DWrite.dll Thu Aug 22 20:16:41 2013 (5215E509)
    00007ff9`075a0000 00007ff9`075ca000 WINMMBASE WINMMBASE.dll Thu Aug 22 19:47:02 2013 (5215DE16)
    00007ff9`07a20000 00007ff9`07a27000 msimg32 msimg32.dll Thu Aug 22 20:04:22 2013 (5215E226)
    00007ff9`07a30000 00007ff9`07a4f000 winmm winmm.dll Thu Aug 22 19:41:05 2013 (5215DCB1)
    00007ff9`07a50000 00007ff9`07a5a000 version version.dll Thu Aug 22 21:34:18 2013 (5215F73A)
    00007ff9`080b0000 00007ff9`080c8000 l3codeca l3codeca.acm Thu Aug 22 21:32:26 2013 (5215F6CA)
    00007ff9`081c0000 00007ff9`082db000 UIAutomationCore UIAutomationCore.DLL Sat Oct 05 18:56:17 2013 (524FD431)
    00007ff9`088e0000 00007ff9`088f6000 devenum devenum.dll Thu Aug 22 21:19:48 2013 (5215F3D4)
    00007ff9`089b0000 00007ff9`089ba000 midimap midimap.dll Thu Aug 22 21:32:41 2013 (5215F6D9)
    00007ff9`08a80000 00007ff9`08a9f000 davclnt davclnt.dll Thu Aug 22 21:11:09 2013 (5215F1CD)
    00007ff9`08aa0000 00007ff9`08aab000 msadp32 msadp32.acm Thu Aug 22 20:03:37 2013 (5215E1F9)
    00007ff9`08ab0000 00007ff9`08abb000 msacm32_7ff908ab0000 msacm32.drv Thu Aug 22 21:25:37 2013 (5215F531)
    00007ff9`08ba0000 00007ff9`08c1f000 dxgi dxgi.dll Sat Oct 05 19:01:48 2013 (524FD57C)
    00007ff9`08c20000 00007ff9`08e28000 d3d11 d3d11.dll Sat Oct 05 18:44:04 2013 (524FD154)
    00007ff9`08e30000 00007ff9`08e3b000 avrt avrt.dll Thu Aug 22 20:05:03 2013 (5215E24F)
    00007ff9`08e40000 00007ff9`08fd3000 windowscodecs windowscodecs.dll Thu Aug 22 19:49:57 2013 (5215DEC5)
    00007ff9`08fe0000 00007ff9`08ff1000 wtsapi32 wtsapi32.dll Thu Aug 22 21:31:54 2013 (5215F6AA)
    00007ff9`09000000 00007ff9`09015000 ntlanman ntlanman.dll Thu Aug 22 20:01:29 2013 (5215E179)
    00007ff9`091e0000 00007ff9`091eb000 secur32 secur32.dll Thu Aug 22 20:05:44 2013 (5215E278)
    00007ff9`09200000 00007ff9`0920b000 imaadp32 imaadp32.acm Thu Aug 22 20:02:57 2013 (5215E1D1)
    00007ff9`09210000 00007ff9`0929d000 mscms mscms.dll Thu Aug 22 19:38:52 2013 (5215DC2C)
    00007ff9`092a0000 00007ff9`092a9000 msg711 msg711.acm Thu Aug 22 20:03:38 2013 (5215E1FA)
    00007ff9`092c0000 00007ff9`092cb000 davhlpr davhlpr.dll Thu Aug 22 21:34:59 2013 (5215F763)
    00007ff9`092f0000 00007ff9`092fc000 msgsm32 msgsm32.acm Thu Aug 22 20:03:13 2013 (5215E1E1)
    00007ff9`09310000 00007ff9`0931c000 ondemandconnroutehelper ondemandconnroutehelper.dll Thu Aug 22 20:02:57 2013 (5215E1D1)
    00007ff9`093b0000 00007ff9`093bb000 drprov drprov.dll Thu Aug 22 21:32:14 2013 (5215F6BE)
    00007ff9`09410000 00007ff9`09471000 MMDevAPI MMDevAPI.dll Thu Aug 22 19:44:52 2013 (5215DD94)
    00007ff9`09490000 00007ff9`094f2000 ninput ninput.dll Thu Aug 22 19:39:29 2013 (5215DC51)
    00007ff9`09570000 00007ff9`097ca000 comctl32 comctl32.dll Thu Aug 22 21:57:49 2013 (5215FCBD)
    00007ff9`09880000 00007ff9`098a1000 dwmapi dwmapi.dll Sat Sep 21 15:45:33 2013 (523D327D)
    00007ff9`09a60000 00007ff9`09b01000 SHCore SHCore.dll Thu Aug 22 19:43:05 2013 (5215DD29)
    00007ff9`09c10000 00007ff9`09c56000 nvdxgiwrapx nvdxgiwrapx.dll Tue Nov 12 00:13:11 2013 (5280D7E7)
    00007ff9`09c60000 00007ff9`09cbf000 nvd3d9wrapx nvd3d9wrapx.dll Tue Nov 12 00:13:16 2013 (5280D7EC)
    00007ff9`09d60000 00007ff9`09d68000 saHook saHook.dll Thu Nov 07 02:41:00 2013 (527A630C)
    00007ff9`0a040000 00007ff9`0a0cb000 apphelp apphelp.dll Tue Oct 22 16:15:35 2013 (526609F7)
    00007ff9`0a110000 00007ff9`0a232000 uxtheme uxtheme.dll Thu Aug 22 21:46:59 2013 (5215FA33)
    00007ff9`0a290000 00007ff9`0a2b6000 devobj devobj.dll Thu Aug 22 19:59:51 2013 (5215E117)
    00007ff9`0a2e0000 00007ff9`0a2ea000 kernel_appcore kernel.appcore.dll Thu Aug 22 20:01:32 2013 (5215E17C)
    00007ff9`0a770000 00007ff9`0a7c7000 winsta winsta.dll Thu Aug 22 19:49:08 2013 (5215DE94)
    00007ff9`0a800000 00007ff9`0a80c000 netutils netutils.dll Thu Aug 22 20:03:33 2013 (5215E1F5)
    00007ff9`0a970000 00007ff9`0a9a5000 rsaenh rsaenh.dll Thu Aug 22 20:04:50 2013 (5215E242)
    00007ff9`0aaa0000 00007ff9`0aabf000 userenv userenv.dll Thu Aug 22 19:53:49 2013 (5215DFAD)
    00007ff9`0aac0000 00007ff9`0ab05000 powrprof powrprof.dll Thu Aug 22 20:02:23 2013 (5215E1AF)
    00007ff9`0ab50000 00007ff9`0abf3000 dnsapi dnsapi.dll Tue Oct 08 16:50:54 2013 (52539D3E)
    00007ff9`0ad40000 00007ff9`0ad98000 mswsock mswsock.dll Thu Aug 22 20:05:17 2013 (5215E25D)
    00007ff9`0ada0000 00007ff9`0adbe000 cryptsp cryptsp.dll Thu Aug 22 20:05:46 2013 (5215E27A)
    00007ff9`0af60000 00007ff9`0af9a000 ntasn1 ntasn1.dll Thu Aug 22 20:04:11 2013 (5215E21B)
    00007ff9`0afa0000 00007ff9`0afc4000 ncrypt ncrypt.dll Thu Aug 22 20:04:03 2013 (5215E213)
    00007ff9`0afd0000 00007ff9`0aff6000 bcrypt bcrypt.dll Thu Aug 22 20:05:00 2013 (5215E24C)
    00007ff9`0b0f0000 00007ff9`0b115000 srvcli srvcli.dll Thu Aug 22 20:02:19 2013 (5215E1AB)
    00007ff9`0b2c0000 00007ff9`0b2eb000 sspicli sspicli.dll Sat Sep 21 16:09:28 2013 (523D3818)
    00007ff9`0b2f0000 00007ff9`0b34e000 bcryptPrimitives bcryptPrimitives.dll Thu Aug 22 20:04:18 2013 (5215E222)
    00007ff9`0b350000 00007ff9`0b35a000 CRYPTBASE CRYPTBASE.DLL Thu Aug 22 21:37:07 2013 (5215F7E3)
    00007ff9`0b360000 00007ff9`0b3f7000 sxs sxs.dll Thu Aug 22 21:29:23 2013 (5215F613)
    00007ff9`0b400000 00007ff9`0b42f000 nvinitx nvinitx.dll Tue Nov 12 00:14:02 2013 (5280D81A)
    00007ff9`0b440000 00007ff9`0b454000 profapi profapi.dll Thu Aug 22 20:05:23 2013 (5215E263)
    00007ff9`0b4f0000 00007ff9`0b502000 msasn1 msasn1.dll Thu Aug 22 20:06:00 2013 (5215E288)
    00007ff9`0b510000 00007ff9`0b55e000 wintrust wintrust.dll Thu Oct 10 22:44:35 2013 (52569323)
    00007ff9`0b560000 00007ff9`0b5aa000 cfgmgr32 cfgmgr32.dll Thu Aug 22 20:04:46 2013 (5215E23E)
    00007ff9`0b660000 00007ff9`0b76e000 KERNELBASE KERNELBASE.dll Sat Sep 21 18:14:53 2013 (523D557D)
    00007ff9`0b770000 00007ff9`0b947000 crypt32 crypt32.dll Wed Oct 16 22:09:31 2013 (525E73EB)
    00007ff9`0b950000 00007ff9`0ba89000 kernel32 kernel32.dll Tue Oct 22 16:19:15 2013 (52660AD3)
    00007ff9`0ba90000 00007ff9`0bae8000 ws2_32 ws2_32.dll Thu Aug 22 20:04:54 2013 (5215E246)
    00007ff9`0baf0000 00007ff9`0baf9000 nsi nsi.dll Thu Aug 22 21:41:41 2013 (5215F8F5)
    00007ff9`0bb00000 00007ff9`0bb34000 imm32 imm32.dll Thu Aug 22 19:55:38 2013 (5215E01A)
    00007ff9`0bb40000 00007ff9`0bb91000 shlwapi shlwapi.dll Thu Aug 22 19:08:52 2013 (5215D524)
    00007ff9`0bba0000 00007ff9`0bd76000 setupapi setupapi.dll Thu Aug 22 19:09:53 2013 (5215D561)
    00007ff9`0bd80000 00007ff9`0be37000 oleaut32 oleaut32.dll Thu Aug 22 20:02:42 2013 (5215E1C2)
    00007ff9`0be40000 00007ff9`0be97000 sechost sechost.dll Thu Aug 22 21:38:53 2013 (5215F84D)
    00007ff9`0bea0000 00007ff9`0c077000 combase combase.dll Sat Sep 21 16:20:31 2013 (523D3AAF)
    00007ff9`0c080000 00007ff9`0c1f1000 user32 user32.dll Thu Aug 22 19:56:08 2013 (5215E038)
    00007ff9`0c200000 00007ff9`0c345000 gdi32 gdi32.dll Sat Oct 05 19:16:59 2013 (524FD90B)
    00007ff9`0c350000 00007ff9`0c486000 rpcrt4 rpcrt4.dll Thu Aug 22 20:16:46 2013 (5215E50E)
    00007ff9`0c510000 00007ff9`0c517000 psapi psapi.dll Thu Aug 22 20:05:49 2013 (5215E27D)
    00007ff9`0c530000 00007ff9`0d93f000 shell32 shell32.dll Wed Nov 06 01:26:51 2013 (5279002B)
    00007ff9`0d940000 00007ff9`0d9e5000 advapi32 advapi32.dll Thu Aug 22 21:32:00 2013 (5215F6B0)
    00007ff9`0d9f0000 00007ff9`0db88000 GdiPlus GdiPlus.dll Thu Aug 22 19:45:56 2013 (5215DDD4)
    00007ff9`0db90000 00007ff9`0dc34000 clbcatq clbcatq.dll Thu Aug 22 19:12:16 2013 (5215D5F0)
    00007ff9`0dc40000 00007ff9`0dce7000 msvcrt msvcrt.dll Thu Aug 22 21:43:00 2013 (5215F944)
    00007ff9`0dd00000 00007ff9`0dd9a000 comdlg32 comdlg32.dll Sat Oct 19 15:48:33 2013 (52620F21)
    00007ff9`0dda0000 00007ff9`0ded8000 msctf msctf.dll Wed Oct 02 16:20:43 2013 (524BBB3B)
    00007ff9`0dee0000 00007ff9`0e056000 ole32 ole32.dll Sat Sep 21 15:10:27 2013 (523D2A43)
    00007ff9`0e0c0000 00007ff9`0e269000 ntdll ntdll.dll Sat Sep 21 18:04:21 2013 (523D5305)
    Unloaded modules:
    00007ff8`ed620000 00007ff8`ed754000 MelodyneReWireDevice.dll
    Timestamp: Fri Nov 01 06:21:03 2013 (5272AD9F)
    Checksum: 001354CF
    ImageSize: 00134000
    00000000`564e0000 00000000`565b2000 MSVCR100.dll
    Timestamp: Sat Feb 19 10:39:54 2011 (4D5F034A)
    Checksum: 000CD48D
    ImageSize: 000D2000
    00007ff8`ed620000 00007ff8`ed754000 MelodyneReWireDevice.dll
    Timestamp: Fri Nov 01 06:21:03 2013 (5272AD9F)
    Checksum: 001354CF
    ImageSize: 00134000
    00000000`564e0000 00000000`565b2000 MSVCR100.dll
    Timestamp: Sat Feb 19 10:39:54 2011 (4D5F034A)
    Checksum: 000CD48D
    ImageSize: 000D2000
    00000000`06570000 00000000`06792000 ReWire.dll
    Timestamp: Thu Oct 06 03:32:22 2011 (4E8C8696)
    Checksum: 00221626
    ImageSize: 00222000
    00007ff8`ed3d0000 00007ff8`ed5bf000 wpdshext.dll
    Timestamp: Thu Aug 22 20:17:22 2013 (5215E532)
    Checksum: 001EEB45
    ImageSize: 001EF000
    00000000`02d40000 00000000`02d60000 saffireasio.dll
    Timestamp: Tue Aug 16 17:43:16 2011 (4E4A1F94)
    Checksum: 00000000
    ImageSize: 00020000
    00000000`53b20000 00000000`53b5c000 ffusb2asio_x64.dll
    Timestamp: Wed Sep 25 23:40:32 2013 (5242E7D0)
    Checksum: 00042A4E
    ImageSize: 0003C000
    00000000`02bc0000 00000000`02ced000 asio4all64.dll
    Timestamp: Fri Jun 07 01:58:46 2013 (51B0B1B6)
    Checksum: 00000000
    ImageSize: 0012D000
    00000000`20d80000 00000000`2254f000 TH2 SONAR-64.dll
    Timestamp: Mon Sep 10 22:43:59 2012 (504DE08F)
    Checksum: 017C995B
    ImageSize: 017CF000
    00007ff9`02820000 00007ff9`02849000 MSVFW32.dll
    Timestamp: Thu Aug 22 21:21:23 2013 (5215F433)
    Checksum: 0002309E
    ImageSize: 00029000
    00000000`27680000 00000000`279de000 BlueVerb DRV-2080.dll
    Timestamp: Thu Sep 05 07:15:14 2013 (5227A2E2)
    Checksum: 0035A913
    ImageSize: 0035E000
    00000000`1d140000 00000000`1d480000 Z3TA+ 2_64.dll
    Timestamp: Fri Sep 30 06:51:51 2011 (4E84DA67)
    Checksum: 00316B9A
    ImageSize: 00340000
    00007ff9`02890000 00007ff9`028d0000 DINPUT8.dll
    Timestamp: Thu Aug 22 21:28:43 2013 (5215F5EB)
    Checksum: 0003DE81
    ImageSize: 00040000
    00000000`19b30000 00000000`19fdf000 Rapture64LE.dll
    Timestamp: Sat May 15 06:28:38 2010 (4BEDB276)
    Checksum: 002227CC
    ImageSize: 004AF000
    00000000`11740000 00000000`11f26000 SI-Bass Guitar.dll
    Timestamp: Sat Mar 12 04:49:12 2011 (4D7A6098)
    Checksum: 0026A86D
    ImageSize: 007E6000
    00007ff8`ea0a0000 00007ff8`ea336000 WMVCore.DLL
    Timestamp: Thu Aug 22 18:50:36 2013 (5215D0DC)
    Checksum: 002A3CD8
    ImageSize: 00296000
    00007ff8`f50e0000 00007ff8`f5122000 WMASF.DLL
    Timestamp: Thu Aug 22 21:22:45 2013 (5215F485)
    Checksum: 0004B7CD
    ImageSize: 00042000

  • Weird characters appear in title bar when windows are maximised

    I am using awesome WM and when windows are maximised weird characters appear.  It appears normal when unmaximised.
    Maximised window:
    Unmaximised window:

    Well I finally figured out (accidentally )  that these indicate the state of window i.e floating, maximised horizontally, maximised vertically.

  • Is there a way to close VI's nicely when Window is closed with "X"?

    Is there a way to close VI's nicely when Window is closed with "X"?
    The VI is the GUI for an automated test console and I would like to save a state when it is closed to allow for the user to reopen the VI and the GUI is the same. At the very least I would like to make sure the equipment is placed into a safe state.
    -Nate

    Dennis, I could not find the VI you mentioned.  How do you search on a vi's name in Labview?  I even tried with Windows Explorer search and didn't find it.
    What I did find was that you need to use the "Panel Close?" filter event to catch clicking on the X, and the "Application Instance Close?" filter event to catch clicking on the menu bar File - Exit.  The attached vi does just this.
    - tbob
    Inventor of the WORM Global
    Attachments:
    CatchClose.vi ‏11 KB

  • Freeing memory for Internal Frames when they are closed

    Does anyone have any advice for a way to completely free all references to InternalFrames and their contents when they are closed? It appears that many references to the frame are held deep within Swing. Our application hold references to large memory structures in the InternalFrame, which means that we have a large memory leak whenever a frame is closed.

    try to remove all listeners added to components which are part of the JIF before you dispose of the JIF.
    ;o)
    V.V.

  • How can you get CMD + L to open a new window, when all windows are closed?

    In Firefox 28 and earlier, you could hit Apple + L (CMD + L) when no FF windows were open, and it would pull up a blank page with the cursor blinking in the address bar.
    After installing FF 29, when you hit CMD + L (with no windows open) it just plays the system alert sound and does nothing.
    I want to be able to hit CMD + TAB to gain control of an idle Firefox, and then be able to hit CMD + L to gain control of a BLANK address bar.
    Every other version of Firefox I've ever used did this, so am I missing something here? Any ideas?
    Note: I realize that you can hit CMD + N to launch a new window and then CMD + L to select the text within the address bar. I'm not looking to re-train my habits within Firefox, but simply want that feature like it was in the previous 28 versions.

    Well, after an entire week without a word from Mozilla, I officially give up.
    I understand that new software will have bugs when it is released. I understand that the bugs are fixed in the order of greatest impact/priority. I also understand that my issue is not a bug, rather a feature that was inexplicably removed.
    A couple of things I cannot understand —
    Why would Mozilla remove '''ANY''' features from their software when they are touting this as the most customizable web browser ever? That is obviously not logical and will be to their detriment in the long run.
    Furthermore, if a person did get on here just to complain about this update, they were immediately met with a canned response from a moderator, which offered a few options to make Firefox '''LOOK''' like the previous version. That speaks volumes about this update and the developers' confidence in it. The person who gets on here with a legitimate problem asking why a feature was removed — they get '''NO''' response from a moderator. Again, this speaks volumes. I am not even asking for an immediate solution to this problem, just the acknowledgement that there is a problem. On top of that, especially in the development of software, the old adage particularly rings its truest — ''If it ain't broke, don't fix it.''
    Lastly, I think we can all agree that Firefox 29 is a blatant ripoff of Google Chrome. If I wanted Google Chrome, that is exactly what I would have downloaded. That pains me not only as a devout Firefox user for nearly 10 years, but especially as I have donated over $200 to the Mozilla Foundation in that time. In other words, I have financially supported the development of a software that has become absolutely indifferent to its users' needs, and moreover, they have now resorted to copying off of their neighbor.
    I have since rolled back versions — all the way to Netscape Navigator 9 — which seems to have just about as much functionality as the bungled mess that is Firefox 29.
    I genuinely appreciate all of the time and effort that goes in to creating open-source software, and I financially support the projects that I feel adhere to the open-source philosophy. That said, Mozilla.org seems to be straying away from this philosophy, to the point where, for me, it is simply time for a change.
    Thanks for the memories, Firefox!

  • 20.0.1: File== New Window & New Private Window will not open then Firefox will not stop running when application is closed

    Although nothing appears to be happening when clicking on either New Window or New Private Window there seems to be processes started because when I try to close Firefox and reopen, I get an error message saying that Firefox is already running. My only option then is to stop the processes via Task Manager. I have tried (several times) to uninstall and reinstall.

    Although advised not to, I finally hit the reset button in the Save Mode Window. This corrected the problem. I suspect a faulty add-on - I try and reject many. I will add them back on at a time as I develop the need. Thanks for you help.

  • FireFox, despite being in a separate window, which is suponque a separate instance, when leaving the menu "exit" All the windows are closed, why is that? It has some configuration that prevents this?

    open FireFox
    press [CTRL]+[N]
    (now are 2 Window of FireFox, ok?)
    click on Menu
    click exit
    Ops! All Window of FireFox are closed?

    bbatman wrote:
    jschell wrote:
    My guess is that someone was trying to protect the system properties and then they wanted to add on the top of that. Thus they came up with that idea.Yeah, I was thinking that too. I bet you are right.
    But Properties exposes no API to restore defaults to the current instance. If some key/value gets "overwritten" by a put in the current instance, shadowing a key/value in defaults, there is no way to bring the default value back to the foreground except by deleting key (and thus restoring visibility to defaults).Err...although true I doubt it is relevant.
    Consider.
    1. Something grabbed a property value before you did anything. Nothing you do will change that. I suspect most VM stuff works this way.
    2. Something grabbed the properties and kept a reference. Nothing you do will change that.
    3. You changed it, so why would you want the other value?
    4. Deleting it does restore it.
    Given the above what situation from that do you think is relevant to your question? Or is there some other situation that you are considering?

  • I need to update Firefox, but it keeps saying that Firefox needs to be closed first (even though all windows are closed). I cannot install or remove Firefox files due to this problem.

    Firefox was unable to open google, and I saw there was an update for that problem, but I am unable to install the update (or any update for that matter) as well as removing Firefox. Every time I try to do so, I get a message that I must close Firefox first (even though there are no windows open). I checked applications to be sure, and it does not appear Firefox is running when this happens.

    Hi kshikuma. This happens to me sometimes, as well.
    To solve this issue, open the Windows Task Manager by hitting Ctrl+Alt+Del.
    Go to the "Processes" tab and see if a process named "firefox.exe" or "plugin-container.exe" is opened. Close any and all such processes by right-clicking them and selecting "End Process".

  • Firefox 5.0 won't open a new window if all windows are closed or minimized

    Running Firefox 5.0 under Mac OS X 10.6.8. If I close all of the windows, or all windows are minimized, I can't open a new window. A new window is listed in the Windows menu with the name "Mozilla Firefox", but the window does not actually exist. The ghost window can't be selected from that menu and therefore also can't be closed

    Well, the behavior I described is now intermittent. Sometimes I can open a new window and sometimes I can't. If I can't, command-Tab does nothing. So far I've found no consistent circumstances under which I can or can't open a new window.
    Originally I was running computationally intensive program that required 3.35 days to complete its run. When the run was over the Firefox problem disappeared - for awhile. Then the problem recurred in the intermittent fashion I've described.

Maybe you are looking for

  • Forcing a specific rollback segment on a transaction does not seem to work

    Hi! We're using Oracle 9.2.0.5.0 on Sun Solaris and we're still configured to use Rollback Segments. We have an issue with Snapshot too old due to RBS too small on a long query I attach below for reference: set heading off set pagesize 0 set feedback

  • How to install Adobe Creative Suite 5.5 on Ubuntu 12.10 ?

    Hey, i have a student and teacher edition of Adobe Creative Suite 5.5 Web Premium and i recently switched to ubuntu , is it possible to use it on this OS ? Because i keep getting errors when trying to install through wine from cdrom. Would be happy a

  • Burning old .mov files in iMovie HD6 (iDVD)

    I have a number of old "movies" in the .mov format originally produced in iMovie02 and iMovie03 that I would like to burn again using the DVD burner in iLife06. Unfortunately the old .mov file when I do burn it produces a result with large pixels, et

  • Query with a condition - Overall results row displays incorrect value

    Hi All, I have a bw query with top 40 conditions. However, The Overall Result Row Figures Do Not Equal The Sum of the Column Rows. Although the top condition is activated, the overall result still displays the overall result of the whole report. I ha

  • Wifi disconnects after connecting for a few seconds [SOLVED]

    I have an interesting situation and perhaps you guys can give me a hand. I'm installing Arch on a system that only has a WiFi; no big deal. So, I get the live CD and 1. Start it and choose the network install (that's the only choice for this CD) 2. G