execfile?

BlitzMax Forums/BlitzMax Programming/execfile?

is there a command to execute a file anymore? perhaps I over looked it.

system_

0.o system_ what?

try
system_ "notepad.exe"


execfile?
run command?
createprocess

http://www.blitzwiki.org/index.php/System_Commands

Also take a look at (the undocumented) PUB.FreeProcess.

Followed by the command in the form of a string, if memory serves. Alternatively, use CreateProcess.

http://www.blitzbasic.com/Community/posts.php?topic=53709

thanks everyone :) i tried search and it didnt come up with that thanks again

What if you don't want your Blitz program to wait for the new process to end, but also don't want the new process to end if your Blitz program does either? Is there a way to do that (on all three platforms, I *think* I know how to do it in a Win32-specific way)?