> I have an application which needs to convert from
> JApplet to JFrame....
The topic of this forum is web-start, and it
can be used to launch both applets and
applications. An applet deployed using
web-start avoids a lot of the browser related
problems that affect 'embedded' applets.
This leads me to..
> Please let me know what are the steps need to take for this
You do not need to convert it, to launch it
using web-start, but if you are determined to
make it into a frame, it would be best to ask
how to do that on a forum where the subject
being talked about, is closer to what you are
doing.
For more closely related forums, try here
http://forum.java.sun.com/category.jspa?categoryID=5
(More the first two of the Available Forums:)
The process is quite simple. All you have to do is to change the "extends JApplet" to "extends JFrame", create a main() method, and move all the code from the init, start, and stop methods into main or the classes constructure, and call setVisible(true) somewhere.
Depending on what else in Applet you are using, you may also need to change any calls to other methods in Applet or AppletContext to the corrisponding calls for a stand alone application, or the JNLP Services.
/Andy