I have my dialogue box class. Question is how do I start it up when a user clicks the button that is to start it up.
What do I use to start that class up?
Printable View
I have my dialogue box class. Question is how do I start it up when a user clicks the button that is to start it up.
What do I use to start that class up?
dialogBoxNAME.setVisible(true);
if its in a different class then:
otherClass.dialogBox.setVisible(true);