could you please tell me/give me some tutorials on how to compile a GUI
JAVA application created in netabeans as a stand alone application. i
created a GUI application using netbeans by inheriting JFrame class but i
can't figure out on how to compile it where in it will create a .exe file.
ppesci@gmail.com - 10 Mar 2005 20:25 GMT
Netbeans don't create a stand alone .exe application. It can create a
.class or .jar one.
You can run as stand alone a .class file if you have a main method. To
run stand alone you must do do in the DOS prompt:
java <MyFrame> where MyFrame is the name of your JFrame class.
Pietro