Guest Book Page






  


GUESTBOOK




Name:
Email:
HomePage:
Where are
you from:
Comments:
Your guestbook

"Entering of snippet of code in my Guest Book" 

/**

*Simple HelloButton() method.

*@version 1.0

*@author Solomon Esomu <esomu1@gmail.com>

*/HelloButton()

{

  JButton hello = new JButton("Hello, wor

  hello.addActionlistener(new HelloBtnlist

  // use the JFrame type until support for t

  // new component is finished

  JFrame frame = new JFrame( "Hello Button"

  Container pane = frame.getContentPane();

  pane.add( hello );

  frame.pack();

  frame.show();      //display the fra

}