Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How do I read the contents of a web page?
Message
De
28/03/2001 17:46:01
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Titre:
How do I read the contents of a web page?
Divers
Thread ID:
00489685
Message ID:
00489685
Vues:
53
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform