home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April A / Pcwk4a98.iso / PROGRAM / DELPHI16 / Format / STATUS.PAS < prev   
Pascal/Delphi Source File  |  1995-05-22  |  613b  |  35 lines

  1. unit Status;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons, Gauges, ExtCtrls;
  8.  
  9. type
  10.   TStatusForm = class(TForm)
  11.     Label1: TLabel;
  12.     Label2: TLabel;
  13.     Gauge1: TGauge;
  14.     CancelBtn: TBitBtn;
  15.     procedure CancelBtnClick(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   StatusForm: TStatusForm;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TStatusForm.CancelBtnClick(Sender: TObject);
  30. begin
  31.      StatusForm.ModalResult := mrCancel;
  32. end;
  33.  
  34. end.
  35.