blacklemons
The Freeman
none of them work, iv been there
http://www.microsoft.com/express/vb/default.aspxaleeock157 said:Isn't there a version of Visual Studio Express that's for VB? That's what I used in my C++ class because they didnt supply the program.
Hinesmdc said:i love vb
just wish i had a program to use it![]()
Hinesmdc said:i dont have the right internet explorer to use it
Private Sub Form_Click()
10 Dim A As String
20 Dim B As String
30 Dim C As String
40 Dim D As String
50 Dim E As String
60 A = InputBox("Yes or no? Choose one.")
70 If A = "Yes" Or A = "yes" Then GoTo 200
80 If A = "No" Or A = "no" Then GoTo 200
90 E = InputBox("Lets try this again, yes or no?")
100 If E = "Yes" Or E = "yes" Then GoTo 200
110 If E = "No" Or E = "no" Then GoTo 300
200 B = InputBox("Are you sure?")
210 If B = "Yes" Or A = "yes" Then GoTo 2000
220 If B = "No" Or B = "no" Then GoTo 90
300 C = InputBox("Wrong answer, now try to escape me!")
310 If C = "" Or C = C Then GoTo 1000
1000 D = InputBox("That's right, you can't!")
1010 If D = D Then Print "Keep trying, you can't win!"
1020 If D = "" Then Print "Not going to work!"
1030 GoTo 1000
2000 Print "You have won."
End Sub