I'm trying to write an exe that runs with out any window how cat I do that? How can I run/write an exe that will not open any window?
(A code example can be very useful).
Thank you very much!
I'm trying to write an exe that runs with out any window how cat I do that? How can I run/write an exe that will not open any window?
(A code example can be very useful).
Thank you very much!
You'll find a lot on google, for example https://superuser.com/questions/198525/how-can-i-execute-a-windows-command-line-in-background
So to answer this shortly, just use the windows command "start" with the parameter B (-> background i suppose). So write your program and create a small .bat file which includes just
start /B <your program>