I'm trying to open an IE Window, the IE address is actually pointed to an html file on the hard drive. I can open it fine if I use an actual web address using this code:
Dim pr as process
pr = pr.Start("IEXPLORE", "http://google.com")
But I can't do the same thing pointing to the C drive. (Perhaps opening it on C sounds barbaric. But I have clients using laptops out in the field on the open road, no IE connection while on the open road, who need access to a Help file in HTML)
How do I do this ?
Dim pr as process
pr = pr.Start("IEXPLORE", "http://google.com")
But I can't do the same thing pointing to the C drive. (Perhaps opening it on C sounds barbaric. But I have clients using laptops out in the field on the open road, no IE connection while on the open road, who need access to a Help file in HTML)
How do I do this ?