Hi happy programmers !!
I have a very intriguing problem with access. I think I have tried any possible variation but perhaps you might have an additional one.
Here is the problem. I have a subform inside a parent form. On the parent form I have a button that opens a form in which you can add new records. Once the form is updated then a few combo boxes are supposed to perform a requery to there recordset so the new record's modification will show. Now, there is a comcobox inside the child (sub form) form that it is not recognized as an object of the form. Here is the code.
Private Sub btn_phonegroup_Click()
DoCmd.OpenForm "frm phones groups", acNormal, , , , acDialog
cmb_phgroup.Requery
cmb_choice.Requery
' THIS IS THE OBJECT THAT IS NOT RECOGNIZED BY THE COMPILER ???
Me.frm_phones_list_sub.cmb_phgroup.Requery
End Sub
Thank you in advance,
V.
I have a very intriguing problem with access. I think I have tried any possible variation but perhaps you might have an additional one.
Here is the problem. I have a subform inside a parent form. On the parent form I have a button that opens a form in which you can add new records. Once the form is updated then a few combo boxes are supposed to perform a requery to there recordset so the new record's modification will show. Now, there is a comcobox inside the child (sub form) form that it is not recognized as an object of the form. Here is the code.
Private Sub btn_phonegroup_Click()
DoCmd.OpenForm "frm phones groups", acNormal, , , , acDialog
cmb_phgroup.Requery
cmb_choice.Requery
' THIS IS THE OBJECT THAT IS NOT RECOGNIZED BY THE COMPILER ???
Me.frm_phones_list_sub.cmb_phgroup.Requery
End Sub
Thank you in advance,
V.