Jforms embedded into an applet

Hi, I've created a simple Jform that I'm going to gradually develop and add functionality to. I want this to sit within an applet, which i've got within a web page. However the jform has a main method:

publicstaticvoid main(String args[]){

java.awt.EventQueue.invokeLater(new Runnable(){

publicvoid run(){

new imageEditor().setVisible(true);

}

});

}

which I believe applets don't have, so how can I add this jform into an applet? I've had a search for information but I can't find anything when searching for "jforms and applets" is there something else I could look for information about?

Cheers

Steve

[1102 byte] By [stevieceea] at [2007-11-26 22:27:39]
# 1
Applets can have main methods but don't necessarily need them. Are you sure you don't mean jFrame? http://forum.java.sun.com/thread.jspa?threadID=765656&messageID=4365831
Hard_Wireda at 2007-7-10 11:30:18 > top of Java-index,Java Essentials,New To Java...
# 2
Yeah I do mean a JFrame, sorry.Thanks for the link, I'll have a look into itSteve
stevieceea at 2007-7-10 11:30:18 > top of Java-index,Java Essentials,New To Java...