In my button code I want to add an "IF" statement so that If the label is between the numbers 1 through 5 it will show text in another label. The problem is, i cant seem to figure out how to do the 1 through 5 part.
I have tried:
IF TextBox1.Text (1:5) Then
Label1.Text = "You are between 1 and 5"
End IF
I have tried:
IF TextBox1.Text (1:5) Then
Label1.Text = "You are between 1 and 5"
End IF