Switch to full style
Java2 codes,problems ,discussions and solutions are here
Post a reply

First Applet

Fri Apr 06, 2007 10:34 am

Start First applet

java code
import javax.swing.JApplet;
import javax.swing.JButton;

/**
*
* @author sami
*/
public class myapplet extends JApplet{

/** Creates a new instance of myapplet */

public void init()
{
getContentPane().add(new JButton("OK"));
}

/**
* @param args the command line arguments
*/


}




Post a reply
  Related Posts  to : First Applet
 load class to applet- load frame class to applet     -  
 add applet to jsp     -  
 Java applet     -  
 applet in netbeans     -  
 Snake applet     -  
 JFrame on applet     -  
 how to connect applet with excel     -  
 Ball sticker applet     -  
 Ball Sticker{Applet}     -  
 Applet File Permission     -  

Topic Tags

Java Applet