PDA

Click to See Complete Forum and Search --> : Message boxes


x-ice
Oct 20th, 2005, 05:46 PM
How can i create a message box using java code?

System_Error
Oct 20th, 2005, 06:30 PM
JOptionPane.

Several versions exist...But for messages:

JOptionPane.showMessageDialog(null,"String message");

x-ice
Oct 20th, 2005, 06:33 PM
JOptionPane.

Several versions exist...But for messages:

JOptionPane.showMessageDialog(null,"String message");Do i need to import any class libraries for that?

System_Error
Oct 20th, 2005, 06:35 PM
Yes:

import javax.swing.*;


or you can fully qualify the name:


javax.swing.JOptionPane.showMessageDialog(null,"sadfasdf");