home *** CD-ROM | disk | FTP | other *** search
- unit Main2;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- ComCtrls, StdCtrls, CaptBtn;
-
- type
- TForm1 = class(TForm)
- StatusBar1: TStatusBar;
- Label1: TLabel;
- Label2: TLabel;
- CaptionButton1: TCaptionButton;
- Label3: TLabel;
- Label4: TLabel;
- procedure CaptionButton1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.CaptionButton1Click(Sender: TObject);
- begin
- Application.Minimize;
- end;
-
- end.
-