Datasheet view Subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I increase the number of records in the subform datasheet view as I
save each record from the main form. I have autonumber set up to generate a
new number for each record as it is added to the table supporting the subform.

All records appear on separate lines in the table but appear in one line in
the subform and I have to scroll through the records in the subform to check
the data.
 
suggest that in the main form you code an event that'll pop when the record
is added. In that event, do a requery on the subform's datasheet:

me![control_name_of_subform_on_main_form].form.requery

something like that (you'll need clean up the syntax as I'm still a newbie
so I try things till I get them to work).
 
Back
Top