Automatic Toolbar

M

Michelle

Hello, I posted this question on Excel.Misc a while ago, but everyone
ignored it, I'm really desperate for a solution... any ideas:

I use hyperlinks to other documents, but I don't want the Web toolbar to
come up everytime I use them.Can I switch that automatic feature off? I
don't want to know how to turn a toolbar off (I've done that a thousand
times)! I want to know how to stop it from coming on automatically each time
I follow a hyperlink.

Any ideas? Please...

M
 
B

Bill Manville

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top