I am creating an app that will start when my program CD is inserted. It will give the user a menu, with a selection of programs to install.

I am using a label control for each link in the menu. Now what I need to do is execute a specific .exe file on the disk when a certain label is clicked...

I have tried

Private Sub Label1_Click(...) Handles Label1.Click
Shell("myexe.exe")
End Sub

But it says the file cannot be found, even though the .exe is sitting in the same folder as my CD menu .exe

What would be the correct way to call this .exe file?