L
Larry
I just experimentally put together this code that replaces Word's menu
bar with a temporary menu.
Questions:
Why would anyone want to replace the menu bar with a custom menu bar?
If the Add method was not set for temporary, would it be possible to
restore the regular menu once it had been replaced, or would it be lost
from that template forever?
Set mybar = CommandBars _
.Add(Name:="Custom", Position:=msoBarBottom, MenuBar:=True,
Temporary:=True)
With mybar
.Visible = True
End With
Larry
bar with a temporary menu.
Questions:
Why would anyone want to replace the menu bar with a custom menu bar?
If the Add method was not set for temporary, would it be possible to
restore the regular menu once it had been replaced, or would it be lost
from that template forever?
Set mybar = CommandBars _
.Add(Name:="Custom", Position:=msoBarBottom, MenuBar:=True,
Temporary:=True)
With mybar
.Visible = True
End With
Larry