I have made a game using netbeans gui frame.
I want to upload it to my site but for it i need to have convert it into applet.
the thing is i don't know how to do it.
Printable View
I have made a game using netbeans gui frame.
I want to upload it to my site but for it i need to have convert it into applet.
the thing is i don't know how to do it.
I think the following link shows a very clear steps to do so.
Integrating an Applet in a Web Application
Hope it is helpful:)-:
Not sure I understand the question...you have a java desktop application, and wish to convert it to an applet?
See How to Make Applets (The Java™ Tutorials > Creating a GUI With JFC/Swing > Using Swing Components)
A JApplet extends Container, and a JFrame extends Container - thus the components you add to a JFrame can be added to a JApplet (eg use JApplet rather than a JFrame)