Friday, March 12, 2010

First GUI Program

First GUI Program

import javax.swing.*;
public class gui
{
public static void main(String args[])
{
JOptionPane.showMessageDialog(null,"First Java GUI Program");
}
}

NOTE: THIS WILL SIMPLY PRINT THE MESSAGE IN A DIALOG BOX.

No comments:

Post a Comment