Why can't I use the Enter key to go to the file in a hyperlink in.

G

Guest

In Excel 2003 I can't use the Enter key to to to a hyperlink destination. It
only works with a mouse click.

Also how do I stop the Web toolbar appearing everytime I go to the hyperlink
destination.

These are both very annoying changes in Excel 2003.
 
D

Dave Peterson

I think that excel's behavior changed before xl2003 (for the hyperlink stuff).
(and I don't have a solution for you)...

One way is to just to disable the Web toolbar until you want it back.

Option Explicit
Sub testme01()
Application.CommandBars("web").Enabled = False
End Sub

If you want it back, just change the False to True.

You could run that little macro, or you could even just enter the command from
the VBE immediate window:

Hit alt-f11
hit ctrl-g
type this and hit enter:
Application.CommandBars("web").Enabled = False
And close this window and try it out.
 

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