Provide yourself of an example of a code?
You can use nested if...then...else statements to help you while you are programming.
If intGuess = intSn Then 'Correct
Me.lblMessage.Text = "YOU GUESSED IT"
Else
If intGuess < intSn Then
Me.lblMessage.Text = "Too Low" 'too low
Else
Me.lblMessage.Text = "Too High" 'too high
End If
Then it will display different things
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment