Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Form_Current()
txtValue.FontSize = 10
lblSpecialFlag.Visible=False
Select Case txtValue
Case < 0
txtValue.BackColor = 123456
Case = 0
txtValue.BackColor = 3456789
Case < 10
txtValue.BackColor = 4354437
Case Else
txtValue.BackColor = 4354437
txtValue.FontSize = 12
lblSpecialFlag.visible = True
End Select