Change background color

  • Thread starter Thread starter jack
  • Start date Start date
J

jack

I have a form in continuous view that is bound to a
query. I would like the OnClick event to change the
background color for only that selected textbox. If
another text box is selected then the background color
will change and the previous clicked textbox will retain
the background color. How do I accomplish this?

Thanks in advance
 
Look at Conditional Formatting. Also check out www.lebans.com for some other
possibilities.

You cannot change the background color of one textbox via code in a
continuous forms view without changing the same textbox on each record. That
is because there really is just one textbox, shown multiple times for the
different records. Thus, what you do to one is done to all!
 
Back
Top