OPEN UP HTML PAGE

  • Thread starter Thread starter Developerme
  • Start date Start date
D

Developerme

Using Access 2007. This maybe rudimetary, but I need the code to open a html
page from the C: drive from Access command. The page(s) are help files that
user can go to. I also saved as flashplayer, but found that it requires
administrator access under Vista. So, if anyone knows how to disable that,
let me know. Otherwise, code to open HTML page would be fine. Thanks.
 
I believe you can instantiate a FileSystemObject and open the page that way.
It should come up in a browser window, since that's the default "viewer" for
html.
 
You should be able to use FollowHyperlink:

Application.FollowHyperlink "C:\Folder\Page.html"
 
Back
Top