Continuing from this question
With each system call, the function constructs a set of parameters and sends them off to another program that is just console-based. Is there a way I can make it so that no console window pops up for each call?
I've done a search but the ones that aren't a linker issue just aren't working for me. For instance, I tried the _execl
call and System::Diagnostics::Process^ myProcess = gcnew System::Diagnostics::Process;
but they aren't working.
The _execl
will bring a console window up, scroll a bunch of stuff (from the program I called I guess), then close the my app and not even do what it was supposed to do.
The System::Diagnostics::Process^ myProcess = gcnew System::Diagnostics::Process;
doesn't seem to execute what I want either because the output folder that should contain files, contains nothing.
So I'm open for ideas.