2 issues, Menu Bar Missing, Full Screen Queries and Forms

J

John

I am working a database in access 2003.

Issue 1: The main menu bar is missing on most screens and when I go to the
tools, menu bar is not on the list.

Issue 2: When I open the database, the swichboard is full screen. When I
run a query, report or form, it is full screen. How do I change to
overlapping.

John
 
J

Jeanette Cunningham

Hi John,
here is some code to turn on the menu and tool bar-->

Public Function MenusOn()
DoCmd.ShowToolbar "Form View", acToolbar 'where appropriate
CommandBars("Menu Bar").Enabled = True
End Function

Open the immediate window and type
?MenusOn
and hit Enter
This should turn on the menu and toolbar.



Open the switchboard in design view and set its maximize and minimize
buttons to not show.
In Access if one screen is maximized to full screen, every screen after that
opens to full screen.

If you want to prevent a screen being maximized-->
Private Sub Form_Activete()
DoDmd.Resore
End Sub

Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
S

Sea Cho

Dear Jeanette Cunningham,

I have the same problem like John. My Access build-in menu bard went
missing. I read your message below, but dont know where to start. I don't see
it in the customized window. The menu bar somehow got lost.

It would be great if you can tell me step by step to get back my menu bar. I
try to uninstall the Office 2003 and reinstall it, but still the menu bar
doesnt come back.

I greatly appreciate your help.

Thanks alot,
sea
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top