Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
URL Information
Message
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00264105
Message ID:
00264655
Views:
17
>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
Previous
Reply
Map
View

Click here to load this message in the networking platform