QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: sparjolly on October 31, 2020, 08:25:44 pm
-
I have created the following batch file to execute two QB64 exes in succession. It works, except that the process pauses in between the two programs with "Press any key to continue" message. Is there some way to suppress this pause so that both the programs are run without any key press required?
C:\Windows\SysWOW64\cmd.exe /c PROGA
C:\Windows\SysWOW64\cmd.exe /c PROGB
-
Add SYSTEM to the end of your programs:
-
Yes, this solved the problem. Never realized till now the difference between "END" and "SYSTEM" statements which I have been using interchangeably all these years. Thank you for the quick response.