Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

How to read a web page already open 1

Status
Not open for further replies.

cparralesl

Programmer
Jan 27, 2002
118
NI
Hi everyone,

I need to read a web page already loaded. I need to take information from there and process it.

It is an Application web, I guess, where I write my user name and password, then select the option that open the page I need and finally take it to MS Excel where I process it. Currently I do that manually.

I need a script that read the information loaded from the page, process it and finally show the results at once.

Any help would be appreciated.


Cesar Humberto Parrales
Application Support
 
this is how you bind to an existing outlook application session, i presume you can use the same method to bind to the already existing IE session?

Set objApp = GetObject(, "Outlook.Application") '#### Find existing instance of Outlook
If Err Then
'WScript.Quit() '#### If Outlook isn't running, quit the script
'Set objApp = CreateObject("Outlook.Application") '#### uncomment this
End If
 
Thanks mrmovie for the hint. It was useful.

I already built the script I need.

Regards

Cesar Humberto Parrales
Application Support
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top