How do you run an exe file from a BlitzMax program, I can't seem to find any command to do it :(
Thanks,
Thanks,
Import PUB.FreeProcess
Global proc:TProcess
Function RunApp(myapp$) ' check if application is still running If proc<>Null If proc.Status() Notify "program still running!" Return EndIf EndIf ' run program proc=TProcess.Create(myapp$,0) If Not Proc Notify "Failed to launch "+myapp$ EndIf End Function