harpyopsis
New member
- Local time
- Today, 07:27
- Joined
- Oct 15, 2009
- Messages
- 5
Dear all !
I am just migrating a 2003 *.mdb to 2007 *.accmdb (then to 2016).
None of my users is fan of the Ribbon and myself very reluctant to spend time in managing XML USysRibbons.
I built an Access 2003 CommandBar with 13 controls and some 60 Items (Text Only always), very easy to enable / disable according to the users’ permission levels.
Sober and compact, this CommandBar gave us full satisfaction over many years.
I just discover the « Classic Menu for Office » on AddinTools, which brings the 2003 original “Menu Bar” + ToolBox inside a 2007 Ribbon Tab which is automatically named “Menus”.
After referencing OFFICE\MSO.dll, I could also successfully import my old “VetoBar” which works perfectly under 2007.
The reason I call you now is because this CommandBar is oddly included inside a custom Tab of the Ribbon automatically called “Add-Ins”. It does NOT replace the ribbon. Ribbon which again brings its one-inch height as an empty space on top of the display...
See attached images
Would any one have a hint on how to start optimizing the top of the 2007 Access window, knowing that we do not need any cumbersome ribbon-like structure ????
Thank you !
phil
I am just migrating a 2003 *.mdb to 2007 *.accmdb (then to 2016).
None of my users is fan of the Ribbon and myself very reluctant to spend time in managing XML USysRibbons.
I built an Access 2003 CommandBar with 13 controls and some 60 Items (Text Only always), very easy to enable / disable according to the users’ permission levels.
Code:
DoCmd.ShowToolBar "Menu Bar", acToolbarYes
Dim MyCmdBar As CommandBar, TargetCBItem As CommandBarControl
Set MyCmdBar = CommandBars("VetoBar")
MyCmdBar.Controls(11).Enabled = True ‘Accounting
Set TargetCBItem = CommandBars.FindControl(Tag:=" CptaTVAVent ")
If Not TargetCBItem Is Nothing Then TargetCBItem.Enabled = True
I just discover the « Classic Menu for Office » on AddinTools, which brings the 2003 original “Menu Bar” + ToolBox inside a 2007 Ribbon Tab which is automatically named “Menus”.
After referencing OFFICE\MSO.dll, I could also successfully import my old “VetoBar” which works perfectly under 2007.
The reason I call you now is because this CommandBar is oddly included inside a custom Tab of the Ribbon automatically called “Add-Ins”. It does NOT replace the ribbon. Ribbon which again brings its one-inch height as an empty space on top of the display...
See attached images
Would any one have a hint on how to start optimizing the top of the 2007 Access window, knowing that we do not need any cumbersome ribbon-like structure ????
Thank you !
phil