Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
URL Information
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Divers
Thread ID:
00264105
Message ID:
00264655
Vues:
19
>I kinda follow you, can you add to what your saying to make it easier to understand.


It's not really clear what you're trying to do (that's why you're getting more questions, rather than answers). If you want a user to be able to open up Internet Explorer and go some some web page, then have your VFP program get those variables, you can't - at least not directly. What you would need to do is have your VFP program open IE through automation.

For example,
oIE = CreateObject('InternetExplorer.Application')
oIE.Navigate('http://www.levelextreme.com')  
oIE.visible=.T.
?oIE.LocationURL
The oIE.Navigate wouldn't be needed if you're letting the user type that info. in. From your VFP app, grab the current URL using oIE.LocationURL, then use the various string commands to parse out the info you're interested in.
-Paul

RCS Solutions, Inc.
Blog
Twitter
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform