Oh, I see. I thought you were after the output. Sorry.davebar wrote: Sat Jul 17, 2021 3:04 pmI want the Windows version to appear and stay visible ONLY in the the command line window, without the MessageRequester.
How to issue a command line instruction. [SOLVED]
Re: How to issue a command line instruction. [SOLVED]
Re: How to issue a command line instruction. [SOLVED]
The minimum (if the command launched in a window does not need to communicate with the program that launched it)I now need to construct a string variable eg Command$ in order to get:
RunProgram("cmd.exe", Command$, #Null$, #PB_Program_Open)
Code: Select all
Command$ = "ver"
RunProgram("cmd.exe"," /k " + Command$, "")
