cs_rene38
Messages postés1858Date d'inscriptionsamedi 29 juin 2002StatutMembreDernière intervention17 octobre 201311 26 nov. 2002 à 18:03
Shell ne sait exécuter que des fichiers ... exécutables ! (.com, .exe, .bat)
Pour lancer un autre fichier par son application, il faut utiliser la fonction API ShellExecute :
Déclaration :
Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( _
ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long