"C:\Program Files\Microsoft Games\Halo\halo.exe"
so the code looks like this
Code: Select all
Private Sub Command1_Click()
Shell "C:\Program Files\Microsoft Games\Halo\halo.exe"
End Sub
So i have to run halo.exe and config.txt at the same time so i did this
Code: Select all
Private Sub Command1_Click()
Shell "C:\Program Files\Microsoft Games\Halo\config.txt"
Shell "C:\Program Files\Microsoft Games\Halo\halo.exe"
End Sub