Search
Sponsors
Sponsors

Archive for the ‘Beginners’ Category

Dialog box in swing

Thursday, August 25th, 2011

 

javax.swing.JOptionPane.showMessageDialog(null,ou);

var swing = new Class("javax.swing.JOptionPane");
swing.showMessageDialog(null,"");

hello world , swing style

Thursday, February 19th, 2009
hello world , swing style

import javax.swing.JOptionPane;

public class Swing {

   public static void main(String[] args) {
      JOptionPane.showMessageDialog( null, "Hello World!" );
   }

}
Translate