Anyone else ever hit this problem? Thanks in Advance!
I am using below code to hide/unhide toolbars. It works great, except, when "one" user (of 3) opens MS Access after exiting the application, the File Menu does not appear in MS Access unless openning in Safe Mode.
I suspect corrupt DLL or other MS Access System related issue?
I will ask IT to re-install MS Access 2003 (or Office 2003). If that does not solve issue; I am stuck!
I posed same question in 2005, with no responses; and never solved the issue. Needed to open MS Access in Safe Mode.
Steve Medvid
IT Consultant & Web Master
I am using below code to hide/unhide toolbars. It works great, except, when "one" user (of 3) opens MS Access after exiting the application, the File Menu does not appear in MS Access unless openning in Safe Mode.
I suspect corrupt DLL or other MS Access System related issue?
I will ask IT to re-install MS Access 2003 (or Office 2003). If that does not solve issue; I am stuck!
I posed same question in 2005, with no responses; and never solved the issue. Needed to open MS Access in Safe Mode.
Code:
Function HideAllMenuItems()
'This will hide all menu bars and tool bars
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i
End Function
Function UnHideAllMenuItems()
'This will unhide all menu bars and tool bars
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i
End Function
Steve Medvid
IT Consultant & Web Master