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 chkOne_Click()
ColorTextBox
End Sub
Private Sub chkTwo_Click()
ColorTextBox
End Sub
Private Sub chkThree_Click()
ColorTextBox
End Sub
Private Sub chkFour_Click()
ColorTextBox
End Sub
Private Sub ColorTextBox()
If chkOne And chkTwo And chkThree And chkFour Then
txtMyTextBox.BackColor = vbRed
Else
txtMyTextBox.BackColor = vbWhite
End If
End Sub