OPEN UP HTML PAGE

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.
 
D

Dennis

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.
 
D

Douglas J. Steele

You should be able to use FollowHyperlink:

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

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