how can i get information from iExplorer using VB interface?
how can i get information from iExplorer using VB interface?
(OP)
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.
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.
RE: how can i get information from iExplorer using VB interface?
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.