Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can i get information from iExplorer using VB interface?

Status
Not open for further replies.

Guest
Hi,
I would like to know if any body could help me, i wondering how can i get and put information to iExplorer using a VB form, it's like a send key command but execute asyncronously, not capturing the PC control.
 
Replies continue below

Recommended for you

In a subroutine use:
Dim MyIEApp As Object
Set MyIEApp = GetObject(, "InternetExplorer.Application")

This assumes Internet Explorer is already running. If not then use:
Set MyIEApp = CreateObject("InternetExplorer.Application")

In either case the Internet Explorer objects are exposed as MyIEApp.
 
Status
Not open for further replies.
Back
Top