JFileChooser hangs around

Hi,
I have a JFileChooser so I can choose a file... but then I do some processing during the course of which the JFrame, JPanel etc. fields are meant to be updated. But JFileChooser just won't go away and return focus/control/whatever to the main Objects in my program (i.e. JFrame etc.). So the fields only get updated at the end of the processing, at which time the Jfilechooser also goes away.
I have tried so many things to try and get rid of it: grabfocus, setVisible, disable, etc. etc. But I just can't get rid of it when it's done its job!
any help much appreciated
Mike

if so, the problem is that your swing event loop is busy doing the processing of the file that is picked by the JFileChooser.
to fix this, simply kick off your processing in it's own thread. and then if you want your thread to update the JFrame then you will need to use the SwingUtilities.invokeLater(runnable) method. to do that, you create little Runnables that have a reference to the item you want to update, such as a TextField and you would put the update in there, such as jTextField.setText("something");

Similar Messages

  • Database Session hangs around for 20 minutes after logout

    We used HTML DB 1.6.0.00.87 to create a custom data warehouse reporting application. For some reason once you log out of HMTL_DB, the database session does not go away until 20 minutes later. I have tested it several times and it is consistent at 20 minutes. Does anyone know what controls this and how I can adjust it?

    Hi Randy,
    What you're probably seeing is the connection pooling done by the mod_plsql module. They 'hang around' because connecting to the database can be an 'expensive' overhead, if you run a query that take 0.5 seconds but your connection takes 0.25 seconds, then obviously a great way to reduce the overall time is to not recreate that connection each time, so a connection pool is used.
    Are these sessions causing you a problem?

  • JFileChooser hangs when clicking OK or CANCEL

    I have created an applet to run primarily in Netscape 6 with JRE 1.3.1. I have also adjusted the policy file to give my applet all permissions on the local system. In my Applet I want the user to select a file from the local hard drive. To achieve this I am using the JFileChooserClass however after I select a file from the FileChooser and click OK the dialog does not disappear and Netscape hangs.
    Has anyone else seen this behaviour? Is there a way to workaround it?
    I have included my code just in case I am doing something wrong.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    System.setSecurityManager(null);
    int returnVal = 0;
    String fileName = "";
    //Create a file chooser
    final JFileChooser fc = new JFileChooser();
    returnVal = fc.showOpenDialog(this.getParent());
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    fileName = file.getAbsolutePath();
    Thanks,
    Anthony

    Hi,
    I am having a similar problem. We have a signed applet that presents a JFileChooser and the user selects a file to open. The JFileChooser hangs IE. The applet worked fine on JRE1.3.0.2. The problem arose when we upgraded to JRE1.3.1. Down grading to 1.3.0.2 is not an option for us. Does anyone have a workaround ?
    regards,
    Joag

  • BC4J Error hangs around

    Hi... can somebody tell me why when I get an error (say Primary Key error), anything I do after that causes an exception until the browser is shutdown and restarted...
    Do I need to clean up some stuff?
    Thanks in advance for the help!
    Jarett

    I'm having the same problem.
    I've deployed my BC4J project to Tomcat and there seems to be a problem when many users are trying to insert records into the same table in Oracle. When someone gets an error ( say unique constraint ) then the error hangs around and the other users start to get the error too.
    Marsibil.
    null

  • Applescript Apple Mail - message hanging around, please help!

    I have the following applescript which I am sending mail messages with in Apple Mail. 10.7.2
    tell application "Mail"
      activate
              set DMF to default message format
              set newMessage to make new outgoing message with properties {subject:"emailSubject", visible:true}
              tell newMessage
                        set visible to false
      make new to recipient at end of to recipients with properties {address:"[email protected]"}
                        set html content to "content"
              end tell
      send newMessage
      save newMessage
              set default message format to DMF
    end tell
    The problem is that once the message sends, it hangs around invisibly. How I know? When I close my message viewer in Mail or try to quit mail, the message window of the message I send with Applescript is still there and I have to manually close the window. It is in my sent items but the window does not close in Mail once it is sent? This happens on multiple computers but only in Lion 10.7? Any suggestions?

    Well, the most obvious solution is to not make it visible in the first place:
              set newMessage to make new outgoing message with properties{subject:"emailSubject", visible:false}
    There's no need to see a message if you're automating its creation and delivery, so just set visible to false and you're set.

  • JFileChooser hang when brosing root directory of Truecrypt Encrypted drive

    Hi,
    I have been consistently having a problem with netbeans where if I try to browse to the root directory of my encrypted drive, it hangs for a long time (say 5 - 10 minutes). It then eventually comes back with the correct file choose dialog.
    At first I thought this was just a Netbeans issues. However, I was also developing a Java Swing app (in eclipse) that uses a JFileChooser dialog. If I browse a standard drive I have no problems. If I then go to browse my encrypted file, I get this hang. When I compared the netbeans scenario with this, the only thing in common is that I was trying to browse my encrypted drive.
    This only seems to happen when I want to browser to the root directory of this drive. If I am able to get the dialog to open (on a normal drive) and I directly enter a sub directory of the encrypted drive into the file name field, I can browse there without the hang.
    So just wondering if anyone else has had this problem. I know it isolated to swing JFIleChooser, to at least swing on Windows XP as I don't get this problem through the native file chooser, or through the native file chooser via SWT.
    My drive was encrypted using Truecrypt.
    Truecrypt details
    Size: 41943039488 bytes
    Type: Normal
    Encryption Agorithm: AES
    Key Size: 256 bits
    Block Size: 128 bits
    Mode of Operation: LRW
    Can anyone give me some idea of what might be happening here?
    Regards
    Steve

    I don't know if this is what you are looking for.
    If you need the real roots, you can use this
    File[] file = File.listRoots();
    It should return the available filesystem roots.

  • JFileChooser hangs sometimes

    Hi,
    When I open a JFileChooser save dialog the EDT thread hangs indefinitely. From the stack trace I can see that it is waiting indefinitely when it tries to check if a file is a link or not. This happens only sometimes.The default selected directory(My Documents) does not contain any links or shortcuts.
    Following is the stack trace of AWT-EventQueue thread:
    "AWT-EventQueue-2" prio=6 tid=0x039c9400 nid=0x1210 waiting on condition [0x0400e000..0x0400fb94]
    java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for <0x0ae38cd0> (a java.util.concurrent.FutureTask$Sync)
         at java.util.concurrent.locks.LockSupport.park(Unknown Source)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(Unknown Source)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly(Unknown Source)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(Unknown Source)
         at java.util.concurrent.FutureTask$Sync.innerGet(Unknown Source)
         at java.util.concurrent.FutureTask.get(Unknown Source)
         at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source)
         at sun.awt.shell.Win32ShellFolder2.hasAttribute(Unknown Source)
         at sun.awt.shell.Win32ShellFolder2.isLink(Unknown Source)
         - locked <0x0ae38b00> (a sun.awt.shell.Win32ShellFolder2)
         at javax.swing.filechooser.FileSystemView.isFileSystem(Unknown Source)
         at javax.swing.filechooser.FileSystemView.getSystemDisplayName(Unknown Source)
         at javax.swing.plaf.basic.BasicFileChooserUI$BasicFileView.getName(Unknown Source)
         at javax.swing.JFileChooser.getName(Unknown Source)
         at sun.swing.FilePane$FileRenderer.getListCellRendererComponent(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Source)
         at javax.swing.plaf.basic.BasicListUI.getPreferredSize(Unknown Source)
         at javax.swing.JComponent.getPreferredSize(Unknown Source)
         at javax.swing.ScrollPaneLayout.layoutContainer(Unknown Source)
         at java.awt.Container.layout(Unknown Source)
         at java.awt.Container.doLayout(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validate(Unknown Source)
         - locked <0x0914e040> (a java.awt.Component$AWTTreeLock)
         at java.awt.Dialog.conditionalShow(Unknown Source)
         - locked <0x0914e040> (a java.awt.Component$AWTTreeLock)
         at java.awt.Dialog.show(Unknown Source)
         at javax.swing.JFileChooser.showDialog(Unknown Source)
         at javax.swing.JFileChooser.showSaveDialog(Unknown Source)
         at com.text.SaveApp.launchExportDialog(ActionManager.java:1356)
         at com.text.SaveApp.actionPerformed(ActionManager.java:608)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    "Basic L&F File Loading Thread" prio=6 tid=0x03413800 nid=0x1438 waiting on condition [0x0503f000..0x0503fd94]
    java.lang.Thread.State: WAITING (parking)
         at sun.misc.Unsafe.park(Native Method)
         - parking to wait for <0x0ae389c0> (a java.util.concurrent.FutureTask$Sync)
         at java.util.concurrent.locks.LockSupport.park(Unknown Source)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(Unknown Source)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly(Unknown Source)
         at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(Unknown Source)
         at java.util.concurrent.FutureTask$Sync.innerGet(Unknown Source)
         at java.util.concurrent.FutureTask.get(Unknown Source)
         at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source)
         at javax.swing.plaf.basic.BasicDirectoryModel$LoadFilesThread.run0(Unknown Source)
         at javax.swing.plaf.basic.BasicDirectoryModel$LoadFilesThread.run(Unknown Source)
    "Swing-Shell" daemon prio=6 tid=0x03b8e800 nid=0x7e4 waiting for monitor entry [0x0437f000..0x0437fb14]
    java.lang.Thread.State: BLOCKED (on object monitor)
         at sun.awt.shell.Win32ShellFolder2.isFileSystem(Unknown Source)
         - waiting to lock <0x0ae38b00> (a sun.awt.shell.Win32ShellFolder2)
         at sun.awt.shell.Win32ShellFolder2.equals(Unknown Source)
         at java.util.AbstractList.equals(Unknown Source)
         at java.util.Vector.equals(Unknown Source)
         - locked <0x0ae38b90> (a java.util.Vector)
         at javax.swing.plaf.basic.BasicDirectoryModel$LoadFilesThread$1.call(Unknown Source)
         at javax.swing.plaf.basic.BasicDirectoryModel$LoadFilesThread$1.call(Unknown Source)
         at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
         at java.util.concurrent.FutureTask.run(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
         at sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Let me know if any one has faced similar problems.

    "AWT-EventQueue-2"
    - locked <0x0ae38b00> (a sun.awt.shell.Win32ShellFolder2)
    "Swing-Shell"
    - waiting to lock <0x0ae38b00> (a sun.awt.shell.Win32ShellFolder2)
    That's definitely a symptom of the problem. AWT-EventQueue-2 has not released that lock because it is:
    - parking to wait for <0x0ae38cd0> (a java.util.concurrent.FutureTask$Sync)
    Can you find that object "0x0ae38cd0" somewhere else in the thread dump? It might be revealing to see who has ahold of it and why they haven't released it yet.

  • Why won't firefox open? It starts then hangs around 7300k

    I try to start firefox it doesn't. I check the task mgr and it show the process as open but usually stuck at around 7,300k or 1,800k. It will not start in safe mode or with extension off command either. I have uninstalled and reinstalled, run McGlary and SPybot but nothing has changed. It still wont start. About a week ago i ran McGlary and then firefox actaully started, once! But has since gone back to not starting.

    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • JFileChooser hanging problem

    I am developing an application in which I use JFileChooser. It was working for a while and then (after a recent new application instal) it started to hang every time it attempted to execute the line
    JFileChooser fc = new JFileChooser();
    I tried creating a trivial new application, tried stepping into the library code and tried re-installing NetBeans 4.1 - all with no success.
    Can you suggest what else I might try?

    Thanks for the suggestion. I had not tried printing before and after so I tried it as follows:
    I put the following lines:
    System.out.println("starting new call");
    JFileChooser fc = new JFileChooser();
    System.out.println("ended new call");
    iand I got the following when I ran it:
    nit:
    deps-jar:
    compile:
    run:
    starting new call
    I then had to interrupt the process because it hung and I got:
    Java Result: 1073807364
    I had already tried it with the debugger and stepped into the code invoked by the call to new JFileChooser(). It eventually reached the Toolkit function getDefaultToolkit and never successfully returned from there. It repeatedly executed the test
    if (toolkit == null)
    as false and went straight to the final line
    return toolkit;
    Stepping on or trying to step out of that function simply returned execution to the function's opening line:
    if (toolkit == null)
    This appears to loop.
    I had a problem with Star Office not long before this problem surfaced. It reported that it had failed to save a file as I closed the application. Since it is Java based (and I am ignorant of whether there could be interference) I wonder whether that could have resulted in an overwrite of something in NetBeans. That was why I tried a re-instal - but with no beneficial effect.

  • JFileChooser hangs Netscape but not IE

    Hi,
    Sorry to be asking so many questions but I am in a bit of a fix for the moment.
    I have created a JApplet which creates a JFileChooser. This works fine in IE5 but in Netscape 7.0 whenever I press the OK or Cancel buttons Netscape stops dead.
    I know other people have seen this behaviour - does anyone have a solution ?
    Thanks for reading,
    BadLands

    I think it's got something to do with the netscape security policy.
    Does anyone know I to change it ?
    BadLands

  • Jfilechooser hangs

    Hi - not sure if this is the right forum - but
    Ive written a small applet ans singed it to select a few files and put them in a list . All initated by java script calls.
    The trouble is as soon as the jfilechooser dialog is shown the applet freezes for up to 10 mins maybe more ?
    I've downloaded the latest jdk and jre -- any help is gratefuly received. I get the same effect using IE7 and firefox
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    import java.lang.String.*;
    import java.beans.*;
    import javax.swing.*;
    import java.util.List;
    public class PictDeskUploader extends JApplet //implements ActionListener
         public static final long serialVersionUID = 1L;
         private DefaultListModel listModel; // We need a model to adjust the list     
         public JList pictFileList; // the Jlist object that will hold the list of files
         Container contentpane; // used to reference where the list will be placed
         public JFileChooser fc; // file chooser
         private File[] files; // Array to hold the file chooser results
         public void init ()
              //evt.start();
    try {
    javax.swing.UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              fc = new JFileChooser();
              contentpane = this.getContentPane();
              contentpane.setLayout(new FlowLayout());
              listModel = new DefaultListModel();
              pictFileList = new JList(listModel);
              pictFileList.setSelectedIndex(0);
              pictFileList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
              contentpane.add(new JScrollPane(pictFileList));
         }catch(Exception e){
                        e.printStackTrace();
         public int addFiles()
              int i; //array loop counter
              String fname ;
              fc.setMultiSelectionEnabled(true); // Allow for multiple selections
              fc.showOpenDialog (this); // Show the file chooser dialog to the user
              files=fc.getSelectedFiles(); // Load the file array with the current selected files
              //evt.start();
              for ( i = 0; i < files.length; i++) { //loop through the array of files and only add if we havent got it already
                   fname=files.getPath() ;
                   if (pictFileList.getModel().getSize() > 0 )
                   if ( pictFileList.getNextMatch(fname, 0, javax.swing.text.Position.Bias.Forward) == -1 )
                        listModel.addElement ( fname );
                        } else
                   listModel.addElement ( fname );
         // File Add files
                   return 0;
         public int deleteFiles()
              int i; //array loop counter     // File remove code
                   if (pictFileList.getModel().getSize() > 0 ){   // only if more than 1 file     
                        for(i = 0; i < pictFileList.getModel().getSize(); i++) {
                        int index = pictFileList.getSelectedIndex();
                        listModel.remove(index);
                   return 0;

    Have you tried this in a non-applet program? If it works well there, then this could be due to Java applet's inherent limitation on access to client's data.
    from Google:
    if untrusted, it (an applet) has severely limited access to the user's system - in particular having no direct access to the client's disk or clipboard.

  • Session that has been killed hangs around

    Hi,
    This is probably an old issue and many may have figured out but I haven't and need your help. We have noticed that when the application sessions get hung in the Oracle server (we are running Oracle 9.0.1 on AIX 4.3.3), we kill them with ALTER SYSTEM command. The session status shows it has been KILLED but it does not vanish. Then we look for associated PID and do "ps -ef" but the process is no longer there. How we get rid of sessions that are hung and subsequently KILLED but have not gone away ? The only we have figured out to clean them up is by restarting the instance. We can't afford to restart the instance in production to handle this. Can someone let me know how to handle this ?
    Thanks in advance.

    the killed sessions will show in v$session until PMON clears them up (yes, during startup).
    the unix process is dead, and the killed session is not taking ANY resource. it shows KILLED in v$session just like INACTIVE sessions do. why do you mind them?
    from Note:100859.1:
    PMON will not delete the session object itself until the client connected to
    that session notices that it has been killed. Therefore, the sequence of
    events is:
    1) alter system kill session is issued - the STATUS of the session object in
    V$SESSION becomes KILLED, its server becomes PSEUDO.
    2) PMON cleans up the resources allocated to the session
    (i.e., rolls back its transaction, releases its locks, etc).
    3) the entry in V$SESSION remains there until the client of that session (the
    client is the process associated with the OSUSER,MACHINE,PROCESS columns in
    the V$SESSION view) tries to do another request.
    4) the client attempts another SQL statement and gets back ORA-28.
    5) PMON can now remove the entry from V$SESSION.
    This behavior is necessary because the client still has pointers to the
    session object even though the session has been killed. Therefore, the
    object cannot be deleted until the client is no longer pointing at it.
    hope this helps, Nogah.

  • WebLogic hangs around after shutdown process appears to complete - Message Driven Bean related

    On my current project we have some Ant scripts that automatically
    start and stop WebLogic. The stop script equates to (not exactly but
    close enough):
    java weblogic.Admin -url localhost:8001 -password password -username
    username SHUTDOWN
    WebLogic is start and shutdown for each system module. All modules
    use the exact same script for these two actions. Some of the modules
    use Message Driven Beans and consequently, since these use JMS, a
    JMSxxx.dat file is generated in the jms_store directory. As part of
    the cleanup process the jms_store directory and all files in it are to
    be deleted AFTER WebLogic shuts down.
    The shutdown process works fine in all cases where JMS is not used and
    in all cases where JMS IS used but there are NO message driven beans.
    However, when there is a message driven bean the server does not shut
    down in a timely manner, sometimes not at all (no error messages are
    produced), and the JMSxx.dat file
    remains locked. Consequently, all of the tests run via the ant script
    for modules come to a grinding halt (i.e. environment could not be
    cleaned so further tests would be skewed).
    Can anyone shed some light on a definitive order of events during
    WebLogic's shutdown process? What is the best way to test for the
    server being up? I know there is a ping utility for weblogic - should
    this be used or should a connection to a JNDI or JMS listening port do
    the trick? Any other ideas would be welcome.
    Thanks in advance,
    Mark

    On my current project we have some Ant scripts that automatically
    start and stop WebLogic. The stop script equates to (not exactly but
    close enough):
    java weblogic.Admin -url localhost:8001 -password password -username
    username SHUTDOWN
    WebLogic is start and shutdown for each system module. All modules
    use the exact same script for these two actions. Some of the modules
    use Message Driven Beans and consequently, since these use JMS, a
    JMSxxx.dat file is generated in the jms_store directory. As part of
    the cleanup process the jms_store directory and all files in it are to
    be deleted AFTER WebLogic shuts down.
    The shutdown process works fine in all cases where JMS is not used and
    in all cases where JMS IS used but there are NO message driven beans.
    However, when there is a message driven bean the server does not shut
    down in a timely manner, sometimes not at all (no error messages are
    produced), and the JMSxx.dat file
    remains locked. Consequently, all of the tests run via the ant script
    for modules come to a grinding halt (i.e. environment could not be
    cleaned so further tests would be skewed).
    Can anyone shed some light on a definitive order of events during
    WebLogic's shutdown process? What is the best way to test for the
    server being up? I know there is a ping utility for weblogic - should
    this be used or should a connection to a JNDI or JMS listening port do
    the trick? Any other ideas would be welcome.
    Thanks in advance,
    Mark

  • Firefox tabs hang around after closing them

    When I have multiple tabs open, and I close a tab, the tab browser still shows the page of the closed tab, while the tab is removed from the tab bar. The only way of changing the view is to navigate to the next tab. If there is a flash playing on the page, it continues to play until it's finished, even after you navigate to the next tab.
    == This happened ==
    Every time Firefox opened
    == July 17, 2010. After watching a video on screencastslonline.com, I noticed this as an issue. See full link below.

    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox profile folder that store session data.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox profile folder.
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Open Directory)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Multiple_profile_files_created
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost and you will have to recreate them (make a note or bookmark them).

  • Photoshop.exe Process Hanging Around After Exit - Chris Cox

    It happens from time to time, and this time I was able to breakpoint it to show where it's hung up.  I'm posting this not looking for help, but primarily to pass the information on to Chris Cox on the outside chance it might help Adobe fix the issue...
    -Noel

    Highly useful for international work:  http://www.google.com/language_tools
    Translation:
    In Photoshop cs5 has encountered a problem and needs to close. We apologize for the inconvenience
    and
    You were engaged in an operation. This information might be lost
    -Noel

Maybe you are looking for

  • Slow load times

    Hi there - Is there a good way to improve load times for my pages that have Edge animation?  I have a very simple slide show set up, and even with the Preloader script, it's taking many seconds to load the page.  Any thoughts? Thanks!

  • Printer will not work on window 7

    I have a Lexmark 4200 series printer and downloaded the cd on windows 7. It will not print. I try installing the program and then I was going to try and reinstalling but when I do it says you can't install until the printer is through printing?? 

  • Dynamic File Name in Data Source?

    In Data Model, there is a option "File" as Type. My question is can file name be dynamic, say I set a parameter "ReportID", can this parameter be part of file name. something like {$ReportID}.xml or {:ReportID}.xml If yes, what is the syntax. Thanks.

  • Scalable .JPG images in a PDF

    We need out clients to be able to click on an image in a PDF we produced, and have the images be scalable or have the abliltiy to open in another window. We are currently using PrimoPDF. What program would be best suited to our needs? Thank you.

  • Meeting Place

    1.my understanding is that if you want to have a videoconference of 3 or more parties, you need an MCU, such as a 3515. 2.Can you not just use meeting place express or meeting place express VT ? as opposed to having to use an high value piece of hard