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

enable a textbox on a subform

Status
Not open for further replies.

marcin2k

Programmer
Jan 26, 2005
62
CA
Is it possible to enable a textbox on a subform when I choose an item from a combo box in my main form?
 
Hi
How about
Code:
Private Sub Combo_AfterUpdate()
If Me!Combo = "Enable Button" Then
   Forms!MyMainForm!MySubform.Form.cmdButton.Enabled = True
End If
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top