Opening Another Program
Well, before you even start typing a reply saying use "system()" or "CreateProcess()" listen.
I am doing this for my robot in the science fair. I am designing two programs one will be my MAIN program which will control all the aspects of my robot like starting the voice and other things like that. It will be a Console Application. My second is going to be Windows Forms, but I want to be able to open it from my MAIN program.
The issue that I have is that when I use system() or CreateProcess() they cause my MAIN program to stop and wait for my second one to finish. Is there anyway I can open my secondary program while my MAIN keeps cycling through the commands?