How to open a new window of Internet Explorer and browse to a specific file
Posted on January 4, 2009
1 2 3 4 5 6 7 | 'Internet - How to open a new window of Internet Explorer and browse to a specific file Sub Main() Dim MyIE As InternetExplorer Set MyIE = New InternetExplorer MyIE.Visible = True MyIE.Navigate2 "C:\MyFile.html" End Sub |