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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tabular Forms

Status
Not open for further replies.

tkovirus

Programmer
Apr 13, 2003
4
0
0
CA
Hello,

With Tabular forms, Is there anyway to identify and modify a selected row or record.

I am trying to change the background color of the active /selected record.(i.e..when I move from record to record the selected record background is yellow) The problem with the tabular form is that I cannot figure out how to change only the selected field background without changing the entire column background.

Is there a solution,

Greatly Appreciated,

V I R U S
 
not teh best way but a start
Private Sub Text0_GotFocus()
Text0.BackColor = vbYellow
End Sub

Private Sub Text0_LostFocus()
Text0.BackColor = vbWhite
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top