E
Ed
I've been reading a few things about the new Ribbon UI coming up.
Currently, I have some macros which create new toolbar menu items using code
like:
Set newMenu = tlbr.Controls.Add(Type:=10)
With newMenu
.Caption = "Restore Toolbars"
.Enabled = True
With .Controls.Add(Type:=msoControlButton)
.Caption = "Restore"
.OnAction = "TlBarsReturn"
End With
End With
When the Ribbon comes out, will this code be disallowed and break my macros?
Ed
Currently, I have some macros which create new toolbar menu items using code
like:
Set newMenu = tlbr.Controls.Add(Type:=10)
With newMenu
.Caption = "Restore Toolbars"
.Enabled = True
With .Controls.Add(Type:=msoControlButton)
.Caption = "Restore"
.OnAction = "TlBarsReturn"
End With
End With
When the Ribbon comes out, will this code be disallowed and break my macros?
Ed