Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Reading URL
Message
General information
Forum:
Visual FoxPro
Category:
Internet applications
Title:
Miscellaneous
Thread ID:
00193198
Message ID:
00194327
Views:
22
John,

First off I don't think the phone number you posted is valid (couldn't find it at all). When I use my own number it certainly returns the correct information but doesn't parse the info correctly (get a page that says 'Your browser sent no query information'). However, if you replace the readURL() function with a TextRange object you can get it to work:
*-- Replace
MYHTML=readurl(OIE.document.url)
*-- with
oRange = oIE.document.body.CreateTextRange()
*-- Get plain text
lcText = oRange.text
*-- Get HTML text
lcHTMLText = oRange.HTMLtext
Martyn
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform