I cant place an End If !!!
For some reason or another whith all of the if statements below
when I put an End If after them I get an error saying: End if must be preceeded by a matching If... The code works fine exept its causing bugs in the rest of the code. Any ideas? Besides a select case.. Cause I cant put an end if inside a Select case either!
Code:
Public Function Todo()
System.Console.WriteLine(">--------------------------------------------<")
System.Console.Write("What do you think we should do?")
sInput = System.Console.ReadLine()
If sInput = "look" Then Call Locations()
If sInput = "orders please" Then Call Locations()
If sInput = "Drop Badge" Then Badge = False
Console.WriteLine("OK, I droped the badge!") : Call Start()
End Function