| 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..
|
 |
 |
|
|
subject: Calling JDialog from JDialog - Urgent please...
|
|
|