man JCreator looks nice and is the best IDE i have seen yet, but when i compile applets i ALWAYS get a "Exception in thread "main" java.lang.NoSucHMethodError: main" i know it should work here is the applet template i use:
// The "Applet1" class.
import java.applet.*;
import java.awt.*;
public class Applet1 extends Applet
{
public void init ()
{
setBackground (Color.black);
} // init method
public void paint (Graphics g)
{
} // paint method
} // Applet1 class
the code is all there - dunno why it doesnt work tho