Link to home
Start Free TrialLog in
Avatar of DistributedServices
DistributedServices

asked on

How to control IE's tabs? (Dim WithEvents o_IE As InternetExplorer ... Set o_IE = New InternetExplorer)

Hello and good morning !

I have a Visual Basic 6 project, a kind of form filler, which assists the user with loading web sites.
Now I want to add a second tab to the instance of IE the program conrols.

How do I do so?

Thank you for your help.

Susan
Dim WithEvents o_IE As InternetExplorer
 
Private Sub Form_Load()
...
    Set o_IE = New InternetExplorer
    o_IE.Navigate m_URL
    o_IE.Visible = True
...

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of stevepicks
stevepicks

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial