Hello,
I would like from my main form to move a subform to a new record.
Usually I'm doing that like this:
But here with the subform, I've tried to write:
but I'm said that MySubForm is not opened and indeed it is not open per se but as a subform !!!!
Any idea on how to achieve this ?
Thanks,
Laurent
I would like from my main form to move a subform to a new record.
Usually I'm doing that like this:
Code:
DoCmd.GoToRecord acDataForm, me.name,acNewRec
Code:
DoCmd.GoToRecord acDataForm, "MySubForm" ,acNewRec
Any idea on how to achieve this ?
Thanks,
Laurent