I have these lines that checks the TextBox value, total of 4. I want
to avoid writing this 4 times by using a loop, coz Im a newbie, any
good sumaritan out there,
Select Case Me.TextBox1.Value
Case Is < 2
Me.TextBox1.BackColor = &H80FF80
Case 2 To 4
Me.TextBox1.BackColor = &H80FFFF
Case Is > 4
Me.TextBox1.BackColor = &HFF
End Select