|
| |

|
|
|
|
These Java Applets are under development. They are being produced
with Microsoft J++, and the default builds do not work with Netscape Navigator. This
problem will be corrected in the future.

The code for this applet is very basic, and shows what little code
is required to start building applets. This is the code for the classis "Hello
World!" applet:
import java.awt.Graphics;
class Hellol extends java.applet.Applet
{
public void paint( Graphics g)
{
g.drawString( "Hello World!!!", 50, 25);
g.drawString( "This is a sample applet using MS J++!", 10, 75);
}
}
|

Last Modified: 2004-03-04 08:53 AM -0500
|