I need to access buttons on toolbars at runtime to set the Pushed property. I don’t understand why you can’t use the same syntax you would use to enable or disable a button i.e. I can write:
ToolBar.Item(6).Enabled = False
So what I want to do is
ToolBar.Item(6).Pushed = True
Why are the properties of the button not available when accessing the item by index? and how do I overcome this?