txgeekgirl
Registered User.
- Local time
- Today, 15:56
- Joined
- Jul 31, 2008
- Messages
- 187
I am using the following code to turn off the Ribbon and hide the Nav Bar in an Access DB.
Furthermore, under File/Options I have turned off all of the options for the Ribbon and Nav.
When accessing the Database from the server side, everything works as I would want it. There is no Ribbon or Nav Bar showing at all. However, with an RDP connection, there is still a default Ribbon. Does anyone know how to turn this off?
Code:
'turn off ribbon
DoCmd.ShowToolbar "Ribbon", acToolbarNo
Code:
'turrn off nav pane
strTableName = DLookup("Name", "mSysObjects", "[Type] = 1 AND [Flags] = 0")
DoCmd.SelectObject acTable, strTableName, True
DoCmd.RunCommand acCmdWindowHide
When accessing the Database from the server side, everything works as I would want it. There is no Ribbon or Nav Bar showing at all. However, with an RDP connection, there is still a default Ribbon. Does anyone know how to turn this off?