Eng | Rus
 
Education -> Solutions ->Control IE through vba
 
 
 
Simple Seo Solutions
SEO and Promotion
sites
VoiceNotebook.com
Speech to text for AndroidAndroid speech to text

Open and control internet explorer through vba code

To control IE in vba code you need to set refference to SHDocVw.dll (Microsoft.internet.control) and put it in the declaration section of your form:

Dim WithEvents oApp As SHDocVw.InternetExplorer

Now you can open IE:

Set oApp = New SHDocVw.InternetExplorer
oApp.Visible = True

And navigate to some URL:

oApp.Navigate ("some_URL")
© prjsoft.ru