> If you are doing it from a batch file then you can use the start
> command to remove the console window. e.g.
[quoted text clipped - 4 lines]
> appears and then disappears once the application has launched. This is
> better than having the console appearing as well as the application.
It also helps to have the user run from a shortcut, wherein the console
window is specified to "Run Minimized." As Thomas suggested, though,
one can avoid the console Window entirely by making the right
CreateProcess call to the OS from a stub program in C or C++, avoiding
the console window entirely.
Karl Uppiano - 18 Sep 2006 04:50 GMT
>> If you are doing it from a batch file then you can use the start
>> command to remove the console window. e.g.
[quoted text clipped - 10 lines]
> call to the OS from a stub program in C or C++, avoiding the console
> window entirely.
On Windows, I generally provide a shortcut, and use the javaw.exe version of
the java command line, which does not start a console window.