main menu

yaniv_224

New member
Local time
Today, 12:51
Joined
Jun 28, 2008
Messages
1
how to create a main menu on my DB?

yaniv
 
Making a main menu

First create a form called "frmMainMenu"

Then from the menu

View -> Code

paste the following

Option Compare Database
Option Explicit

Private Sub Form_Current()
DoCmd.Maximize
End Sub


Then from the menu
Tools -> Database utilties -> Startup

Display form/page

Select "frmMainMenu" from the dropdown list

When ever the user opens the database "frmMainMenu" opens and maximises.

Create buttons to open various forms and reports.
 
Or use the switchboard manager to do it for you.

Col
 

Users who are viewing this thread

Back
Top Bottom