> I have written a front end gui in JAVA that launches two C++ console
> applications. When launched from within JBuilder 8 the console application
[quoted text clipped - 5 lines]
> application was launched. Why don't I see a console now? Is this a problem
> with JBuilder 8?
Assuming that you are using Windows, it is likely that the shortcut is
configured to run javaw.exe and not java.exe. Since javaw.exe is a
non-console application (sorry for the Windows-speak), there is no
console window for the child processes to inherit. Depending on how
exactly Runtime.exec() is implemented, you will see problems. Try
running the jar from the command line with java.exe and see if it works.
Ray