L'auteur
FredA France Membre Simple # 0000000005 enregistré le 12/10/2004
Fiche personnelle
Note des membres
pas de note
|
Contributions > 05 - API et appels systèmes
Création de raccourcis Windows
# 0000000554
ajouté le 09/05/2008 16:15:41 et modifié le 09/05/2008
consulté 7690 fois
Niveau
débutant
Version(s) Foxpro : VFP 9.0 VFP 8.0 VFP 7.0 VFP 6.0
Télécharger le ZIP (26.35 Ko)
|
Description |
Création de raccourcis Windows. La création d'un raccourci impose avec VFP l'utilisation de WSH et tous les problèmes qui vont avec, est-il installé etc... Cette DLL fonctionne en Win95, NT4 et au delà. -projet VC pour la compilation de la DLL inclu |
Code source : |
DECLARE integer CreateLink IN e:\SCCreate\SCCreate.dll string @obj, string @lnkpath, string @wkdir, string @description
m.szFile = "c:\test.txt"
m.szLnkPath="c:\test.lnk"
m.szWorkingDir="c:\"
m.szDescription="Description du raccourci..."
? IIF(CreateLink(@szfile, @szlnkpath, @szworkingdir, @szdescription)=0, "Ok", "Error")
clear dlls
|
Commentaires |
Aucun commentaire enregistré ...
|