Bonjour,
Tout d'abord merci neibjr pour m'avoir infomer sur le JCVC (http://www.developpez.net/forums/sho...d.php?t=144724)
J'ai donc regarder les diverses fonctions et essayer de les utilser.
Mais étant débutant , je percute sur un pb
Voici mon code
Et lorsque j'éxécute la fonction il me renvoie une erreur
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 procedure TFormSW.BitBtn1Click(Sender: TObject); var Reponse : String; JvCreateProcess1 : TJvCreateProcess; begin try JvCreateProcess1.ApplicationName := 'plink.exe'; JvCreateProcess1.CurrentDirectory := ExtractFileDir(Application.GetNamePath); JvCreateProcess1.CommandLine := '-ssh ldapsup@AUBSUP29'; JvCreateProcess1.Run; sleep(500); except end; end;
'Debugger exception notification dialog box.' j'ai regardé dans l'aide mais ...
Partager