Name: yyT116575 Date: 11/01/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
The applet extended from JApplet does not work from the browser.
To reproduce the problem:
step 1...
write a simple applet extended form JApplet
e.g.
import java.awt.*;
import java.applet.*;
import javax.swing.*;
public class SimpleApplet extends JApplet
{
public void paint(Graphics g)
{
g.drawString("Hello...", 10,10);
}
}
step 2...
Compile it. make a sample HTML page to load applet...convert using
HTMLConverter...and put them on a web server..
(Review ID: 110334)
======================================================================