Go to a new record a subform

chrisbrooke

New member
Local time
Today, 02:45
Joined
Sep 4, 2003
Messages
9
Hello, I have a main form with two subforms in it. When the main form opens I want the the two subforms to go to a new record automatically. Any suggestions? Thanks in advance.
 
Put:

Code:
DoCmd.GotoRecord, , acNewRec

in the Form_Load() event of the subforms's - they are, after all, forms, and when the main form loads, they have to be loaded too.
 

Users who are viewing this thread

Back
Top Bottom