Start a App

Byak@

Active Member
Licensed User
I know 3 metods.

1)
Sub App_Start
Shell("myapp.exe","")
End Sub

2) with thread.dll

Sub App_Start
Process.New1
process.Start("myapp.exe","")
End Sub

3) with hardware.dll

Sub App_Start
hw.New1
TimeFormat("hh:mm")
hw.RunAppAtTime("myapp.exe",TimeParse("12:20")
End Sub
 
Top