MartyConnelly
martyconnelly at shaw.ca
Wed Aug 3 14:05:39 CDT 2005
Just a couple of guesses to try
CTRL+F11 Toggles between the custom menu bar and the built-in menu bar
There are ways to lose some bits that may require a reinstall of Access
One being, not holding the ctrl key down when dragging items to create a
customized bar
This does a copy and not a move. A move can get lost.
There is a reset button in Tools Customize Options but I have never had
to use.
You might try importing all objects to a band new mdb just in case mdb
corruption is the cause.
You can try toggling the various ToolBars through code
Some are
DoCmd.ShowToolbar "Database", acToolbarYes
DoCmd.ShowToolbar "Menu Bar", acToolbarYes
Function ShowMenu()
On Error Resume Next
DoCmd.ShowToolBar "Menu Bar", acToolbarYes
End Function
Function HideMenu()
On Error Resume Next
DoCmd.ShowToolBar "Menu Bar", acToolbarNo
End Function
Function ShowToolBar()
On Error Resume Next
DoCmd.ShowToolBar "Form View", acToolbarYes
End Function
Function HideToolBar()
On Error Resume Next
DoCmd.ShowToolBar "Form View", acToolbarNo
End Function
| Marcel Vreuls wrote:
>Hi,
>
>I've got the strangest problem. I have a quit large frontend A2K MDB/MDE. I
>cannot recall since when. I guess about 4 weeks not all menus are visible
>anymore. For example i had a dropdown File menu a view menu and a settings
>menu. The view menu is working fine but the other two show no options
>anymore. Only a grey square like option with no menu options
>anymore!?!?!??!?!?
>
>I have about 300 deployed clients through the country and they are all
>working fine. So no worries now and It seems this problem only occurs on my
>pc and laptop. But it develops and tests very bad.
>
>Thx Marcel
>
>
>
--
Marty Connelly
Victoria, B.C.
Canada