Free Pascal Program Tutorial 28 - Running External Programs - IE Batch MS Paint Calculator - Lazarus

To execute an external program from within the pascal code is a simple process. TProccess will do it quickly. TProcess requires Process added to the uses area. This Is The Setup: uses Process; var   RunProgram: TProcess; begin   RunProgram := (nil);   := ’Path and Name of Program’;   ;   ; end; Links of Interest: Lazarus (Free Pascal) Wiki article on executing external programs.
Back to Top