A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

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



 
 
Thread Tools Display Modes
  #1  
Old March 26th, 2009, 05:13 PM posted to microsoft.public.access.gettingstarted
John
external usenet poster
 
Posts: 2,649
Default 2 issues, Menu Bar Missing, Full Screen Queries and Forms

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
  #2  
Old March 26th, 2009, 11:45 PM posted to microsoft.public.access.gettingstarted
Jeanette Cunningham
external usenet poster
 
Posts: 2,190
Default 2 issues, Menu Bar Missing, Full Screen Queries and Forms

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

"John" wrote in message
...
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



  #3  
Old April 15th, 2009, 02:48 PM posted to microsoft.public.access.gettingstarted
Sea Cho
external usenet poster
 
Posts: 1
Default 2 issues, Menu Bar Missing, Full Screen Queries and Forms

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


"Jeanette Cunningham" wrote:

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

"John" wrote in message
...
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




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:55 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.