Call IE with local html page loaded from Access ?

I

Isis

How can I call IE6 from Access using VB and have it load a specified local
file.htm ?

Any help much appreciated
 
D

Douglas J. Steele

Copy everything between the Code Start and Code End statements, and paste it
into a brand new module. When you save the module, make sure you don't name
the module the same as any of the routine inside it.

To open a particular file, you'd then use:

Call fHandleFile("C:\Folder\File.htm", WIN_NORMAL)
 
D

Douglas J. Steele

Ah. I'd read "load a specified local file.htm" as meaning an htm file on his
hard drive.


--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)
 
I

Isis

Ah. I'd read "load a specified local file.htm" as meaning an htm file
on his hard drive.

In fact that is what I meant but this method is good because it is
versatile - and it solves my problem.

Thank you both.
 
Top