Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Highlight Color

Status
Not open for further replies.

EllieFant

MIS
Joined
May 15, 2001
Messages
513
Location
US
In a form when you go to a field by tabbing...it highlights the text as black and makes the text white. Anyway to change that?

Thanks!!

Ellie
**Using Access 97 at work**
**Using Access 2000 at home**

elliefant@qwest.net
 
play around with these

Private Sub YourFieldName_GotFocus()
YourFieldName.ForeColor = 255
YourFieldName.BackColor = 16711680

Hope this helps
Hymn
 
Or go to design view, click on the textbox control and on it's property sheet change BackStyle to Transparent and then BackColor to any color you want. Then when they tab into the control, it will change to that color and revert back when they leave.

Neil
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top