Is there a way to hide a toolbar when Word is opened? I have a template in my Startup folder (Windows NT) which contains 3 toolbars. I only want to see one of those toolbars when Word is first opened. Is there a way to make sure the other 2 toolbars don't automatically appear? It seems like whichever of the 2 is on screen when I close Word will be on screen when I open it, even though I have the following code in the template:
Thanks for any help you can give!
Code:
Private Sub Document_New()
' Ensure Misc toolbar is always enabled
CommandBars("Miscellaneous").Visible = True
' Always hide Styles toolbars
CommandBars("Styles1").Visible = False
CommandBars("Styles2").Visible = False
End Sub
Private Sub Document_Open()
' Ensure Misc toolbar is always enabled
CommandBars("Miscellaneous").Visible = True
' Always hide Styles toolbars
CommandBars("Styles1").Visible = False
CommandBars("Styles2").Visible = False
End Sub
Thanks for any help you can give!