Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How can I call a URL streight from my VFP form ?
Message
De
19/06/2003 09:19:53
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Contrôles ActiveX en VFP
Divers
Thread ID:
00801705
Message ID:
00801714
Vues:
25
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform