35 pts.
 How to run an applet in NetBeans 6.8
how to run an applet using netbeans environment?

Software/Hardware used:
Netbeans 6.8
ASKED: January 25, 2011  11:45 AM
UPDATED: June 3, 2011  4:58 PM

Answer Wiki:
Right click on the class that extends JApplet and select "Run File". Your project could be a Java Application or Java Class Library. Your class declaration must be public and extend JApplet, so Netbeans recognize it as an Applet and then run it.
Last Wiki Answer Submitted:  January 25, 2011  2:53 pm  by  Mariodlg   2,790 pts.
All Answer Wiki Contributors:  Mariodlg   2,790 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

You can run the applet in NetBeans environment, but in web browser you can not, if you do not take away the package definition row from the applet’s source code

 15 pts.