Change Start Form

  • Thread starter Thread starter Ripper
  • Start date Start date
R

Ripper

Is there a way to change the form that opens at startup with a macro? Right
now frmMain opens when the database starts. However, after a drop dead date
I want to lock out the main form and display another.
 
Ripper -

You could not define the start-up form, but instead set up an AutoExec Macro
that checks the date and opens either form depending on the date.

Or, you can add code to the Open event of frmMain. If you are past the
drop-dead date, then open the other form and close frmMain.
 
Back
Top