This works for me. I used late-binding so it won't bloat your application.
VB Code:
Option Explicit Private Sub Form_Load() Dim objIE As Object Set objIE = CreateObject("InternetExplorer.Application") objIE.Navigate2 "http://www.vbforums.com/showthread.php?s=&postid=1308704#post1308704" objIE.Visible = True Set objIE = Nothing End Sub




Reply With Quote