Bonjour
je voudrais exécuter un programme externe depuis Linux
ce code fonctionne et m'ouvre la calculatrice
mais à la compilation j'ai ce message test3.pas(5,2) Warning: Symbol "RunCommand" is deprecated
Quelle autre commande utiliser ?
Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
 
program test3;
uses Process;
var s : ansistring;
begin
	RunCommand('galculator',s);
end.