>Additional info:
>
[quoted text clipped - 6 lines]
>
>The object "subform" is not opened
A Subform is not open in its own right, only as part of the containing
form.
Try:
Me.subformname.SetFocus
Me.subformname.SomeControl.SetFocus
DoCmd.GoToRecord, , acNewRecord
John W. Vinson[MVP]
dp - 25 Jan 2005 22:35 GMT
Hi John,
Thanks for responding
I tried your method and received error:
"Invalid method in an expression"
Also, the event handler is in the subform, not the main form.
So, i tried me.setfocus instead.
But that did not work.
What I want to do is when a user selects a "group" item in subdatasheet item
combo box
>> go to next record in subdatasheet
>> loop through recordset of group items
>> populate those records
I tried Recordset clone but,I have some event handlers that are tied to
the fields so, the recordset clone thing does not handle this
it sounded easy in my mind....
Dp