J
jeremy0028
I have the following code in the save command button on my form. A pop
up message tells me i forgot to put address info and will take me to
address field.
If IsNull(Me.Address) Then
MsgBox "Address Required.", , "Missing Information"
Me.Address.SetFocus
Exit Sub
End If
what i want to do is highlight the text box red once user clicks
on address and puts the address the color will change from red back to
the default color of the text box which is white
Any Ideas
up message tells me i forgot to put address info and will take me to
address field.
If IsNull(Me.Address) Then
MsgBox "Address Required.", , "Missing Information"
Me.Address.SetFocus
Exit Sub
End If
what i want to do is highlight the text box red once user clicks
on address and puts the address the color will change from red back to
the default color of the text box which is white
Any Ideas