[AccessD] Menu problems

| Marcel Vreuls vrm at tim-cms.com
Wed Aug 3 16:00:08 CDT 2005


Marty,

Thanks, pushing the resetbutton and remove usage data button for about 10
times. Start msaccess with the /decompile option my toolbars are
back.....Strano Mavero like italians say or very strange in plain englisch.

Tnxs a lot,

Marcel

-----Original Message-----
From: accessd-bounces at databaseadvisors.com
[mailto:accessd-bounces at databaseadvisors.com]On Behalf Of MartyConnelly
Sent: woensdag 3 augustus 2005 21:06
To: Access Developers discussion and problem solving
Subject: Re: [AccessD] Menu problems


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



--
AccessD mailing list
AccessD at databaseadvisors.com
http://databaseadvisors.com/mailman/listinfo/accessd
Website: http://www.databaseadvisors.com




More information about the AccessD mailing list