home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / COOLCALC.ZIP / RUNCACLF.PAS < prev    next >
Pascal/Delphi Source File  |  1995-09-18  |  1KB  |  52 lines

  1. unit Runcaclf;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, CCalcDlg;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Button1: TButton;
  12.     Edit1: TEdit;
  13.     Button2: TButton;
  14.     procedure Button1Click(Sender: TObject);
  15.     procedure Button2Click(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   Form1: TForm1;
  24.   dlgCalc : TdlgCalculator;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. procedure TForm1.Button1Click(Sender: TObject);
  31. begin
  32.         { THE LINE OF CODE BELOW WILL SEARCH THE FOLLOWING DIRECTORIES IN LISTED ORDER
  33.  
  34.              1    The current directory 
  35.             2    The Windows directory
  36.             3    The Windows system directory
  37.             4    The directory containing the executable file for the current task
  38.         5    The directories listed in the PATH environment variable. 
  39.         6    The directories mapped in a network. }
  40.    WinExec('CoolCalc.exe', SW_SHOW);
  41. end;
  42.  
  43. procedure TForm1.Button2Click(Sender: TObject);
  44. begin
  45.     dlgCalc := TdlgCalculator.Create(Self);
  46.   dlgCalc.ShowModal;
  47.   Edit1.Text := dlgCalc.lblResult.Caption;
  48.   dlgCalc.Free;
  49. end;
  50.  
  51. end.
  52.