Mar 2, 2005 #1 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?
Is it possible to enable a textbox on a subform when I choose an item from a combo box in my main form?
Mar 2, 2005 #2 Remou Technical User Sep 30, 2002 13,030 BE 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 Upvote 0 Downvote
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