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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Internet Explorer Object

Status
Not open for further replies.

dddenney

Programmer
Nov 29, 2000
41
US
After we create the IE object, by using:

oIE = CREATEOBJECT([InternetExplorer.Application])

and navigate to whatever page using:

oIE.navigate("
We would like to be able see what page the user has navigated to. Is there a property that shows what the current URL is? Also does anybody know of any website that lists all of the properties and methods of the IE object for access by either VFP or VB?

Thanks in advance,

Dan
 
o=CREATEOBJECT("Internetexplorer.application")
o.Navigate("o.Visible = .t.
? o.LocationName
? o.LocationURL

Use the object browser in VFP 7.0 to find out all the PEMs for this object also the Intellisense will give to you after
o=CREATEOBJECT("Internetexplorer.application")
just type o. to see them all Walid Magd
Engwam@Hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top