Hi:
How can I disabled at run time, a button created at design time with the Toolbar Control. I have this so far...
Dim button As Button
button.ButtonMenus("Send".Enabled = False
where "Send" is the Button Key at design time. My question is how to match this with the Toolbar Control Toolbar1.
I tried
Set button = Toolbar1.Buttons.?
But I can't find any property or method that allows me to assign the specified button (created at design time) with the var button. Any suggestion?
How can I disabled at run time, a button created at design time with the Toolbar Control. I have this so far...
Dim button As Button
button.ButtonMenus("Send".Enabled = False
where "Send" is the Button Key at design time. My question is how to match this with the Toolbar Control Toolbar1.
I tried
Set button = Toolbar1.Buttons.?
But I can't find any property or method that allows me to assign the specified button (created at design time) with the var button. Any suggestion?