JFileChooser lockup...
Hi folks. I've got an applet that uses JFileChooser and it used to work but many revisions have passed and now when I open the dialog I see the window frame but nothing ever appears inside of it so I have to use task manager to kill the browser process. This is on Windows XP and I tried 1.5.0 and 1.6.2 versions of the JRE.
Now the old code works and the applet is heavily multi-threaded soI'm thinking that some how I'm causing a dead lock with the AWT thread. The only problem with this is that when I comment out the:
returnVal = chooser.showDialog(null, "Save Attachment");
line everything runs along nice and smooth even the subsequent Swing dialogs function just fine. If I was deadlocking the AWT thread I would think that all of the dialogs would stop working. I'm hoping someone has run into something similar before because I'm at a loss as to what to do.
I could roll back to previous versions of the code but that will require 100's of classes to change and I'd still just be guessing.

