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

