Hi to all
long story short, i have 2 executable files
first.exe
second.exe
i want to run both with one button,
i know i can run one executable file with this code
Private Sub Button1_Click_1(sender As Object, e As EventArgs) Handles Button1.Click
Process.Start(My.Computer.FileSystem.CurrentDirectory & "\first.exe")
End Sub
but how do i go about running 2 executable files with one button
and i want the second.exe file to start loading 10seconds after the first.exe loaded
im sure ill need to add a timer aswell for the 10second delay..
any help will be appreciated
thanx in advance