Simple Seo Solutions
SEO and Promotion sites
VoiceNotebook.com
Speech to text for Android
|
|
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.InternetExplorerNow you can open IE:
Set oApp = New SHDocVw.InternetExplorer
oApp.Visible = TrueAnd navigate to some URL:
oApp.Navigate ("some_URL")
|
|
|
|