HOW TO WRITE AN APPLET PROGRAMME
import java.awt.*;
import java.applet.*;
//<applet code="Appletprogramme" height="500" width="500"></applet>
publi class Appletprogramme extends Applet
{
// Called first;
public void init() {
// initialization
}
/* Called second; after init(); Also called whenever
the applet is restarted. */
public void start() {
// start or resume execution
}
// Called when the applet is stopped.
import java.awt.*;
import java.applet.*;
//<applet code="Appletprogramme" height="500" width="500"></applet>
publi class Appletprogramme extends Applet
{
// Called first;
public void init() {
// initialization
}
/* Called second; after init(); Also called whenever
the applet is restarted. */
public void start() {
// start or resume execution
}
// Called when the applet is stopped.
No comments:
Post a Comment