tags:

views:

89

answers:

2

is it possible to run a sub or function as soon as the user opens an access database file? if so, how?

+2  A: 

You could open a hidden form on start up like in Access 2007 Startup. This is also possible in older Access version.

You may use this hidden form for logging or other 'system'-related tasks.

FloE
+6  A: 

Create your function:

Public Funtion DoSomething()
    ' do stuff '
End Function

Then create a macro with the run code action which calls your DoSomething function. Name the macro autoexec. Then, every time the data base starts up, it will run your autoexec macro.

Another thing you can do is set a form to open whenever the database starts. You could then call your DoSomething function from a form event (on open, or on load).

Choose one of those approaches. Either way, if you ever want to start the database without DoSomething running, hold down the shift key as the database opens to bypass your automatic startup routine.

HansUp