Access 2000 has a nice little feature called Conditional Formatting which allows you to change the appearance of a field depending upon one of three conditions:
Field Value is, Expression is or Field has focus.
Here is the scenario: I have a continuous form which has three fields, Name , Phone Number and Fax Number:
What I’ve been attempting to do is create an “Expression is” in the Phone Number and Fax Number fields which will change their colours if Name has “GotFocus”, ie. Someone has put their sticky little cursor on it.
I’ve tried: Iif(Has GotFocus([Name]),Visible=True,Visible=False)
and several variations, give or take the odd paranthesis, on the same theme. The VBA gods just laughed at me. I would appreciate any suggestions. Thanks in advance.