Hey there,

I have a .exe form I created with buttons to launch apps/scripts. The buttons are coded like so:

Code:
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click 
        Process.Start("C:\folder\file.exe") 
    End Sub
This works great but now I want to run this .exe from a usb drive that has the folders\files.e xe.
...