Tools/Startup.... - Need some code to launch this from a button

  • Thread starter Thread starter amorrison2006
  • Start date Start date
A

amorrison2006

Hi there,

Does anyone have some code to open the startup options menu?

I have restricted access to this and I used to have a working code for
this button but I have lost it (somehow),

I just need a macro to launch the startup properties so I can edit my
database, etc.

I hope someone can help,

Thanks so much in advance.

Andrea
 
Hello Andrea.

Hi there,

Does anyone have some code to open the startup options menu?

I have restricted access to this and I used to have a working code for
this button but I have lost it (somehow),

I just need a macro to launch the startup properties so I can edit my
database, etc.

I hope someone can help,

Thanks so much in advance.

Andrea

You can use the RunCommand action with the StartupProperties argument.
Or use in VBA:
Application.RunCommand acCmdStartupProperties
 
Back
Top