I have a form where labels are highlighted when the field gets focus. The code I have used on this form so far is:
Now I am trying to add aditional fields and the same code does not work. i.e...
Anyone have any idea(s) why this won't work now?
Harry Jessen
HMJessen@Yahoo.com
Code:
Private Sub DENTIST__PHONE_GotFocus()
Me!Label19.BackColor = 8454143
End Sub
Private Sub DENTIST__PHONE_LostFocus()
Me!Label19.BackColor = 12632256
End Sub
Code:
Private Sub MMR_GotFocus()
Me!Label26.BackColor = 8454143
End Sub
Private Sub MMR_LostFocus()
Me!Label25.BackColor = 12632256
End Sub
Harry Jessen
HMJessen@Yahoo.com