Personally, I'd use Process:Start to make the code as managed as possible.
One of it's implementations uses the ProcessStartInfo structure, which has
various interesting properties such as CreateNoWindow that'd satisfy your
goals.
> Thanks michiel for the reply,
>
[quoted text clipped - 5 lines]
>
> I would like to run the exe in the background, without interfering with the form of the application. The background process creates a file that
would be used by the windows application.
> > > Hello there,
> > >
[quoted text clipped - 4 lines]
> > application do
> > Process::Start(S"myconsoleapp.exe");
Emmanouel - 10 Jun 2004 16:58 GMT
Thanks michiel
I also used Process:close to free up resources when the process ended.
Thank you again
> Personally, I'd use Process:Start to make the code as managed as possible.
> One of it's implementations uses the ProcessStartInfo structure, which has
[quoted text clipped - 22 lines]
> > > application do
> > > Process::Start(S"myconsoleapp.exe");