Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can I call a URL streight from my VFP form ?
Message
From
19/06/2003 09:19:53
 
General information
Forum:
Visual FoxPro
Category:
ActiveX controls in VFP
Miscellaneous
Thread ID:
00801705
Message ID:
00801714
Views:
23
This message has been marked as the solution to the initial question of the thread.
>How can I call a URL streight from my VFP form ?
DECLARE INTEGER ShellExecute in shell32.dll ;
   INTEGER hwnd, STRING @lpOperation, STRING @lpFile, STRING @lpParam, ;
   STRING @lpDir, INTEGER nShowCmd

Local lcUrl, lcOp
lcOp = "open"
lcUrl = "http://WhateverYourUrlIs"

ShellExecute(0, @lcOp, @lcUrl, .NULL., .NULL., 5)
Alan
Previous
Reply
Map
View

Click here to load this message in the networking platform