|
-
Aug 8th, 2000, 03:32 PM
#1
Thread Starter
Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|