I have a Java application and I want to open a new dialog from the main interface where the user can enter his name, surname and country and then click ok. How can I open a dialog which has a number of different input fields and then save that information in a variable?
|
|
This forum post could be helpful.
|
||
|
|
|
|
Extend JDialog and add some JTextFields and maybe some JComboBoxes. then finish it off with some JButtons You could also look into JGoodies Forms framework its nice and free. EDIT: Composition example Based on Pete's comment i dug up this example using composition rather than overriding JDialog You would want to add getter like
To gain access to relevant input. |
||||||||
|
