I wrote code myself but its not working, can't seem to fix the error, please help.(Visual Studio 2015)
bandicam 2017-04-14 19-07-42-949.jpg
bandicam 2017-04-14 19-07-46-437.jpg
Code:
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
If My.Computer.FileSystem.FileExists("G:\Back to the Future - The Game\Episode 1\BackToTheFuture101.exe") Then
Shell("G:\Back to the Future - The Game\Episode 1\BackToTheFuture101.exe")
Me.Close()
Else
MsgBox("File not found!!!", +vbExclamation, "Episode 1")
End If
End Sub
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
Dim intResponse As Integer
intResponse = MsgBox("Are you sure you want to " _
& "Exit?",
vbYesNo + vbQuestion + vbDefaultButton2,
"Exit?")
If intResponse = vbYes Then
Me.Close()
End If
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
If My.Computer.FileSystem.FileExists("Episode 2\BackToTheFuture102.exe") Then
System.Diagnostics.Process.Start("Episode 2\BackToTheFuture102.exe")
Me.Close()
Else
MsgBox("File not found!!!", +vbExclamation, "Episode 2")
End If
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
If My.Computer.FileSystem.FileExists("Episode 3\BackToTheFuture103.exe") Then
System.Diagnostics.Process.Start("Episode 3\BackToTheFuture103.exe")
Me.Close()
Else
MsgBox("File not found!!!", +vbExclamation, "Episode 3")
End If
End Sub
Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
If My.Computer.FileSystem.FileExists("Episode 4\BackToTheFuture104.exe") Then
System.Diagnostics.Process.Start("Episode 4\BackToTheFuture104.exe")
Me.Close()
Else
MsgBox("File not found!!!", +vbExclamation, "Episode 4")
End If
End Sub
Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
If My.Computer.FileSystem.FileExists("Episode 5\BackToTheFuture105.exe") Then
System.Diagnostics.Process.Start("Episode 5\BackToTheFuture105.exe")
Me.Close()
Else
MsgBox("File not found!!!", +vbExclamation, "Episode 5")
End If
End Sub
End Class