Form opens when database opens

jamphan

Registered User.
Local time
Today, 14:38
Joined
Dec 28, 2004
Messages
143
How can I get a form to open when the database opens?
 
thanks! How about getting it to advance to a new record when it opens?
 
One way would be to set the form's Data Entry property to Yes.
 
I want the other records to be able to be accessed though. That seems to erase all the other records from the form.
 
It doesn't erase anything, they just aren't being viewed. Change that setting back and put this in the load event of the form:

DoCmd.GoToRecord , , acNewRec
 

Users who are viewing this thread

Back
Top Bottom