J
jdrott1
i'm trying to run an application2 automatically 60 secs after
application1 starts. application1 would have the code to start
application2.
Load_Event for application1
Try
System.Diagnostics.Process.Start("c:\application2.exe")
Catch ex As Exception
MsgBox("Error: " & ex.Message)
End Try
how would i tie a timer function in to this so it could count down
from 60 to 0 and start my application?
application1 starts. application1 would have the code to start
application2.
Load_Event for application1
Try
System.Diagnostics.Process.Start("c:\application2.exe")
Catch ex As Exception
MsgBox("Error: " & ex.Message)
End Try
how would i tie a timer function in to this so it could count down
from 60 to 0 and start my application?