Message Dialog in java example

package MessageDialog;



import javax.swing.JOptionPane;



public class showmessage {

    public static void main (String [] args)

    {

    

        JOptionPane.showMessageDialog(null, "Wrong Password", "Warning",JOptionPane.ERROR_MESSAGE);

    

    }  

    

}

Post a Comment

0 Comments