Application Startup

R

RG

I have an access application with initial form in the startup settings.
After putting some breakpoints in some of the modules, these modules seem to
execute before the initial form. If this is the case, what are these
modules/forms called or where else do you define them?

Thanks in advance
 
A

Allen Browne

The AutoExec macro executes when you start up.

If you are specifying a custom ribbon in Access 2007, that code runs very
early in the load process.

After that, the startup form is loaded, so code in its events (Open, Load,
Current, Activate etc) will run.

If you are trying to validate links to the back end in a split database,
make sure you use an unbound form as your startup form, so it does not try
to load any data.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top