Quick summary
A splash screen in MS Access is a borderless startup form that appears automatically when the database opens, built using the Property Sheet, a VBA timer event, and the Display Form setting in Access Options.
Steps
- Go to the Navigation Pane, open the form you want to use as a splash screen, and switch to Design View.
- Open the Property Sheet and set the Close Button property to No to disable the close button.
- Set the Border Style property to None to remove the form border and achieve a clean splash screen appearance.
- Under the On Timer event, click the ellipsis icon to open the VBA editor.
- Write the VBA timer code in the editor to auto-close the splash screen after a set interval, then save.
- Click the File option in the MS Access ribbon.
- Click the Options button at the bottom of the File menu.
- In the Access Options dialog, navigate to Current Database.
- In the Display Form field, select the name of the splash screen form you created.
- Click OK to save your changes and close the options window.
- Reopen your database to confirm the splash screen appears automatically on startup.
.gif)



