This works for me. I used late-binding so it won't bloat your application.

VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Form_Load()
  4.  
  5.     Dim objIE As Object
  6.     Set objIE = CreateObject("InternetExplorer.Application")
  7.    
  8.     objIE.Navigate2 "http://www.vbforums.com/showthread.php?s=&postid=1308704#post1308704"
  9.     objIE.Visible = True
  10.    
  11.     Set objIE = Nothing
  12.  
  13. End Sub