Hello again!,
Does anyone out there hve a reliable method of converting a swing application to a windows.exe.
Thanks
Printable View
Hello again!,
Does anyone out there hve a reliable method of converting a swing application to a windows.exe.
Thanks
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.
O.K
Thanks!