Please Help!
I am trying to launch Internet Explorer from my VB application. The web site is stored on the database (either Cust or Vend). The first time through it runs perfectly. Everytime after that it bombs om me. I tried using a switch and refreshing the form after it executes once, but that didn't work. Thank You. My code:


Option Explicit
Dim WithEvents ie As InternetExplorer

Private Sub Form_Load()
Set ie = New InternetExplorer
With ie
.AddressBar = True
.MenuBar = True
.StatusBar = True
.Height = 500
.Width = 700
.Left = 0
.Top = 0
End With
End Sub

Private Sub cmdWeb_Click()
ie.Navigate txtWeb.Text
ie.Visible = True
End Sub