aspose file tools
The moose likes Swing / AWT / SWT and the fly likes Calling JDialog from JDialog - Urgent please... Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "Calling JDialog from JDialog - Urgent please..." Watch "Calling JDialog from JDialog - Urgent please..." New topic
Author

Calling JDialog from JDialog - Urgent please...

Narayanan Jayaraman
Ranch Hand

Joined: Apr 09, 2003
Posts: 52
I have created a base frame window from which I call JDialog window to accept user inputs. I validate inputs and display Error by creating one mode JDialog from input Dialog. But My problem is it is not displaying till I close the input dialog window. OR Focus is not going to error Dialog. Any thing wrong in doing ? This is my code in input dialog.
JFrame frame = new JFrame();
JOptionPane optionPane = new JOptionPane(message, messageType,buttonOption);
JDialog exitDialog = optionPane.createDialog(frame,windowTitle);
exitDialog.show();
Object selectedValue = optionPane.getValue();
Narayanan Jayaraman
Ranch Hand

Joined: Apr 09, 2003
Posts: 52
It works fine now. Thanks..
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Calling JDialog from JDialog - Urgent please...
 
Similar Threads
Show images on the screen without using JFrame
Dialogs lose focus when minimizing and restoring the application
partial display of JOptionPane
setting bg in jDialog
Correct behaviour when launching a new window and getting rid of the first window