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!

How do you display a field on an After Update

Status
Not open for further replies.

kimmer7389

Technical User
Nov 27, 2001
95
US
How do you display a field on an After Update?

I have a combo box on a form and after I update it I want a check box field to display.
 
If you mean the checkbox is not visible then it would be like this
Private Sub MyCbo_AfterUpdate()
Me.Checkbox.Visible = True
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top