I have a form called frm_Logon that opens on database startup
In the On Open Event I have the following code:
This should hide all toolbars and menus. However it has absolutely no effect. I have tried to change the false to true just to see what happened and there was no change.
I have used this for years and it has always worked. Can someone tell me what I am missing?
I am using Access 2003 on Windows 7
Thanks
In the On Open Event I have the following code:
Code:
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = False
Next i
This should hide all toolbars and menus. However it has absolutely no effect. I have tried to change the false to true just to see what happened and there was no change.
I have used this for years and it has always worked. Can someone tell me what I am missing?
I am using Access 2003 on Windows 7
Thanks