guys i trying to run simple applet program but getting the same error that "START:APPLET NOT INTALIZIED".i save both of files in the same folder "bin" but yet the same error.can any one help me.here is my code[
import java.applet.*;
import java.awt.*;
public class move extends Applet{
int x_pos = 10;
int y_pos = 100;
int radius = 20;
public void paint (Graphics g)
{
// set color
g.setColor (Color.red);
// paint a filled colored circle
g.fillOval (x_pos - radius, y_pos - radius, 2 * radius, 2 * radius);
}
}
and in html
<applet code="move.class" width=250 height=350>
</applet>