I have managed to incorporate an app launcher into my types using posts.php topic=53709:-
I can lauch notepad with the above code , however my app that calls notepad doesn't
seem to handover 'control' to the notepad.exe - is the notepad.exe launched as a 'child'
of my primary application ?
My goal is to run a B3D executable which is within the same directory as my primary BMax app.
Do I need to populate the 'path' to the executable, can I use App_Path.... How can I run my B3D.exe which is resident in the same directory as my BMax App from my BMax app ?
Thanks in advance.....
'Local proc:TProcess=TProcess.Create("notepad",0) Local proc:TProcess=TProcess.Create("Results_Compare",0) If proc.Status() Delay 20000 proc.Terminate Else Notify "Results_Compare failed to launch!" EndIf End ' .... no Not yet !
I can lauch notepad with the above code , however my app that calls notepad doesn't
seem to handover 'control' to the notepad.exe - is the notepad.exe launched as a 'child'
of my primary application ?
My goal is to run a B3D executable which is within the same directory as my primary BMax app.
Do I need to populate the 'path' to the executable, can I use App_Path.... How can I run my B3D.exe which is resident in the same directory as my BMax App from my BMax app ?
Thanks in advance.....