D
Dave - MS Newsgroups
I have a form (frmHouse) with a subform (Options) that also has a subform
(Materials). I need to add default records (read from a query) to the
Materials sub-subform. I can read the query into a recordset and get the
first record on the sub-subform populated properly. The problem I'm having
is moving to the next record on the sub-subform (which is a new record) so I
can add the second and subsequent records.
As far as I can see the active form is the main form (frmHouse) and the
DoCmd.GoToRecord property adds a new record to the main form.
How do I get VBA to move to a new record in the sub-subform so I can
populate it and then go to another new record and so on.
I am using a Do WHILE Not EOF to read the query and populate the form.
Thanks for any insights.
Dave
(Materials). I need to add default records (read from a query) to the
Materials sub-subform. I can read the query into a recordset and get the
first record on the sub-subform populated properly. The problem I'm having
is moving to the next record on the sub-subform (which is a new record) so I
can add the second and subsequent records.
As far as I can see the active form is the main form (frmHouse) and the
DoCmd.GoToRecord property adds a new record to the main form.
How do I get VBA to move to a new record in the sub-subform so I can
populate it and then go to another new record and so on.
I am using a Do WHILE Not EOF to read the query and populate the form.
Thanks for any insights.
Dave