home *** CD-ROM | disk | FTP | other *** search
- unit Unit3;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, Gauges, StdCtrls;
-
- type
- TGaugeWin = class(TForm)
- GaugeLabel: TLabel;
- Gauge1: TGauge;
- OKButton: TButton;
- procedure OKButtonClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- GaugeWin: TGaugeWin;
-
- implementation
-
- {$R *.DFM}
-
- procedure TGaugeWin.OKButtonClick(Sender: TObject);
- begin
- GaugeWin.Hide;
- end;
-
- end.
-