A VBA solution which would prevent the Web toolbar from being shown (at
all) would be:
Application.CommandBars("Web").Enabled = False
If you wanted to disable it only when a particular workbook was open
you could put this in its Workbook_Open procedure in ThisWorkbook
and
Application.CommandBars("Web").Enabled = True
in Workbook_BeforeClose
Bill Manville
MVP - Microsoft Excel, Oxford, England
No email replies please - respond to newsgroup
Michelle - 21 Jan 2008 08:13 GMT
thanks Bill, I think that's fixed it!
M
>A VBA solution which would prevent the Web toolbar from being shown (at
> all) would be:
[quoted text clipped - 9 lines]
> MVP - Microsoft Excel, Oxford, England
> No email replies please - respond to newsgroup
christopher@heavey.co.uk - 29 Jan 2008 13:45 GMT
ah, such a relief to not have that damn toolbar opening every time I
use a hyperlink.
Thanks Bill (and Michelle for asking the question)
Chris