When I open a word document within Internet Explorer I get only the
Formating toolbar enabled.
I am trying to enable to "Standard" toolbar by default but do not know how.
I try also via a VBA but does not work neither. I have signed the VBA
project using MS SelfCert.exe and put the certificate into the root.
The Standard tool bar is still not visible ; BUT the print action is changed
(since if I enable the Standard bar manually the print button performs the
action that I programmed).
Any idea why I cannot have the Standard toolbar enabled ?
Here is the code.
Set myBar = CommandBars("Standard")
If myBar Is Nothing Then
Exit Sub
Else
myBar.Enabled = True
myBar.Visible = True
' Set the print action to a custom action
Set oldControl = myBar.Controls("Print")
' Set the print button to the custom print function
oldControl.OnAction = "PrintActiveDocument"
oldControl.Tag = "Print from Web"
End If
Thanks,
Dan Sirbu
Graham Mayor - 17 Nov 2005 06:11 GMT
http://www.gmayor.com/my_toolbars_are_missing.htm or
http://word.mvps.org/FAQs/AppErrors/MissingMenusEtc.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> When I open a word document within Internet Explorer I get only the
> Formating toolbar enabled.
[quoted text clipped - 27 lines]
> Thanks,
> Dan Sirbu