Hi,
I've hidden a toolbar button manually (Word 2000). Now I want to make it visible with VBA.
I have already som code:
For Each ctl In CommandBars("formatting").Controls
If ctl.caption = strCaption Then
ctl.visible = visible
End If
Next ctl
But it appears the looping is only through visible buttons, so my invisible button is not found.
What can I do?
Thanks for help,
Henk
I've hidden a toolbar button manually (Word 2000). Now I want to make it visible with VBA.
I have already som code:
For Each ctl In CommandBars("formatting").Controls
If ctl.caption = strCaption Then
ctl.visible = visible
End If
Next ctl
But it appears the looping is only through visible buttons, so my invisible button is not found.
What can I do?
Thanks for help,
Henk