View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Interacting with Explorer

Tom,

You want to shell to Internet Explorer, not Windows Explorer.
E.g.,

Shell "C:\Program Files\Internet Explorer\iexplore.exe
c:\manual.htm#StepTwo"


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Tom Ridd" wrote in message
...
I'm implementing a quick and dirty help file approach where

clicking a help
button on a form pops up a web page

Basic line goes
Shell "C:\Windows\Explorer.exe c:\manual.htm"

Anyway it would be convenient if I could pop up the web page at

a particular
bookmark on the page, something like...
Shell "C:\Windows\Explorer.exe c:\manual.htm#StepTwo"

Except this doesn't work because that isn't a file name. I'm

sure there must
be a way of doing this. Any ideas?

Cheers in advance,

Tom