Can someone please tell me how to open an executable with my vb.net project. For now I have the code for the user selecting the executable from a dialog:
Dim openFileDialog1 As New OpenFileDialog()
openFileDialog1.Filter = "Executable Files|*.exe"
openFileDialog1.Title = "Select an Executable File"
If openFileDialog1.ShowDialog() = DialogResult.OK Then
Me.Cursor = New Cursor(openFileDialog1.OpenFile())
End If