Can I 'toggle' a toolbar button

M

Michelle

Still using v.2003, how can I make a button that I put on my toolbar have
two states like the 'bold', 'italic' or 'drawing-toolbar' buttons?
these buttons appear 'illuminated' or 'depressed' when switched

I hope that makes sense

M
 
B

Bob Phillips

Application.CommandBars("MyToolbar").Controls("MyButton").State =
msoButtonDown
 
Top