vote up 0 vote down star

Hi there I am working on an Java Swing application that performs a search on a database. It has 2 JDialog boxes that popup during the search.

The first tells the user that the search has started and has an OK button to close. The second tells the user that the search has returned and is also closed by hitting the OK button.

I there a way of closing the first JDialog box programatically, when the search returns, it's it will be pretty obvious that the seach was started by the time the search has returned.

Thanks.

flag

0% accept rate
Do you have the source code? Can you spot where the dialog is being displayed? If so, prior to display the second dialog invoke the "dispose" method on the first. Just like "nos" have answered – Oscar Reyes Aug 19 at 18:07
Duplicated (with less detail) here: stackoverflow.com/questions/1301874 – kdgregory Aug 19 at 19:13

3 Answers

vote up 0 vote down

call the.dispose() method on the JDialog.

link|flag
Thank's. Do you know how to get access to the currently displayed JDialog object however? The framework I am using doesn't keep a reference to the dialog objects it creates. Thanks. – Dave Aug 19 at 18:07
vote up 1 vote down

Even though closing dialog is as simple as calling setVisible(false) on it, I think your approach is not user intuitive. Showing two dialogs is a bad UI practice. What you have to do is to show progress animation/dialog. Once your search returns stop the progress animation/dialog and show the data returned. Here are some links about the subject:

http://java.sun.com/docs/books/tutorial/uiswing/components/progress.html http://developerlife.com/tutorials/?p=248

link|flag
Using a progress dialog makes the whole request/response process synchronous, in that the user must sit and watch the progress bar until the results have returned. Using two dialogs allows the user to do other things whilst awaiting the results. A better solution would probably be to have the first dialog close automatically after a timeout (if the user doesn't close it himself before then). – DaveJohnston Aug 20 at 15:28
vote up 0 vote down

Check out my answer on another similar question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.