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

Textbox Status Change?

Status
Not open for further replies.

Smoores

Programmer
Joined
Jun 5, 2002
Messages
9
Location
CA
I am trying to make a textbox value stand out after it is updated. I have tried a "Me.statusDesc.FontBold" routine with an on_change, before_update & after_update event to no avail. Could anyone offer any suggestions?
 
Use :-

Private Sub MyTxt_AfterUpdate()
MyTxt.FontWeight = 700
End Sub
Private Sub Form_AfterUpdate()
MyTxt.FontWeight = 300
End Sub

Where MyTxt is the name of the text box you want to affect.


QED.

G LS
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top