3DSawnikku
Relic Team
Pro Coder,Rigger,Animator,GIMP-er,Etc
Posts: 647
|
Post by 3DSawnikku on May 18, 2012 20:38:00 GMT -5
Does anybody know how to Launch and EXE from another one? i really need the code for it.
|
|
|
Post by 06hypersonic60 on May 19, 2012 8:39:33 GMT -5
u mean in blitz?? if so, use: ExecFile here's an example ( taken from the command ref )
; ExecFile sample - RUN THIS WINDOWED! ; Win9x users will need to change location of calc.exe
filename$="c:\winnt\system32\calc.exe"
Print "Press any key to run CALC.EXE!"
WaitKey()
ExecFile(filename$)
Print "Press any key to quit."
WaitKey()
|
|
3DSawnikku
Relic Team
Pro Coder,Rigger,Animator,GIMP-er,Etc
Posts: 647
|
Post by 3DSawnikku on May 19, 2012 10:56:54 GMT -5
doesnt seem to work...
|
|