My main form name is Shows, the sub form name is Show Dates Subform and the sub sub form name is Breed Information. The control on the sub sub form that I want to requery is a combo box named BreedSelDD.
All forms are open but the Sub Sub Form is held NOT visible until needed. (There will be other sub sub forms that will react the same way be being visible when needed.)
So on an after update event of a combo box on my main form I want to re-query the BreedSelDD combo box on the sub sub form.
I have been using various forms of this:
EventSelectDD After update
Private Sub EventselectDD_After Update()
DoCmd.Requery Forms![Shows]![Show Dates subform].Form![Breed Information].Form![BreedSelDD]
End Sub
By various forms I mean using quotes before and after or using ( ) before and after appropriately.
Nothing seems to work, they all error out.
I have always had problems relating to controls on sub-forms but I can usually fight my way to a solution. This time I can't
Where am I going wrong here? I will need this for several other sub sub forms.
Thanks,
All forms are open but the Sub Sub Form is held NOT visible until needed. (There will be other sub sub forms that will react the same way be being visible when needed.)
So on an after update event of a combo box on my main form I want to re-query the BreedSelDD combo box on the sub sub form.
I have been using various forms of this:
EventSelectDD After update
Private Sub EventselectDD_After Update()
DoCmd.Requery Forms![Shows]![Show Dates subform].Form![Breed Information].Form![BreedSelDD]
End Sub
By various forms I mean using quotes before and after or using ( ) before and after appropriately.
Nothing seems to work, they all error out.
I have always had problems relating to controls on sub-forms but I can usually fight my way to a solution. This time I can't
Where am I going wrong here? I will need this for several other sub sub forms.
Thanks,