Click to See Complete Forum and Search --> : creating .exe


Gremlin
September 24th, 2000, 10:29 AM
Hello again!,

Does anyone out there hve a reliable method of converting a swing application to a windows.exe.

Thanks

santyns
September 24th, 2000, 10:12 PM
Hi!
The way I'd do is by having a batch file to start the java class. The content of the batch would be something like:
@echo off
@start java filename

This should do the trick.
Hope this helps!
Bye.

Gremlin
September 25th, 2000, 06:20 AM
O.K

Thanks!