How do I set the default Menu Bar to my own selection using VBA, to emulate changing that setting in the Startup Options dialog box? Will Ryder
~~~~~~~~~~~~~
Digital Data Systems
Sub InitMenuBar()
Dim cbr As CommandBar
For Each cbr In Application.CommandBars
If cbr.Name = "MyCustomMenu" Then
cbr.Visible = True
cbr.Position = msoBarTop
Else
cbr.Visible = False
End If
Next cbr
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.