• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

C++ programmers ...

anton

Banned
is there any commands to run external programs from my program , besides system() ? ... I don't want to run it from the console ...

thanks.
 
Apart from system(), there are also groups of spawn() and exec() calls that will also start a new process.

I don't believe that any of them are restricted to console applications...

 
no, they are not restricted to console applications, they just use console (command.com) to run everything, and I need to bypass that : (
 
thanks, WinExec() is just what I need , now I just need to look up what values can cmdShow variable have 🙂 ... but that's an easy task 😉

thanks.
 
Back
Top