Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How do I read the contents of a web page?
Message
From
28/03/2001 17:46:01
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Internet applications
Title:
How do I read the contents of a web page?
Miscellaneous
Thread ID:
00489685
Message ID:
00489685
Views:
54
CREATEOBJECT("InternetExplorer.Application")
oIE.Navigate("http://www.XYZ.com/")
INKEY(1)
nStartSeconds = SECONDS()
DO WHILE oIE.Document.ReadyState <> "complete" AND (SECONDS()-nStartSeconds < 30)
ENDDO
oie.document.forms(0).username.Value = XXX
oie.document.forms(0).password.Value = XXX
oIE.Document.Forms(0).Submit()

How do I read the contents of the next web page?

Thanks
Anthony
Next
Reply
Map
View

Click here to load this message in the networking platform