Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Messagebox

Status
Not open for further replies.

KryptoS

Programmer
Feb 7, 2001
240
BE

Hello,

how can I display a messagebox with a text in it?

thanx
 
Hi,

In the Swing API, just see the JOptionPane.showXXX static methods, which purposes are to display various types of dialog boxes, for example :

Show an error dialog that displays the message, 'alert':
{
...
JOptionPane.showMessageDialog(null,
"alert",
"alert",
JOptionPane.ERROR_MESSAGE);
//extracted from the JDK documentation
...
}

bye --
Globos
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top