home *** CD-ROM | disk | FTP | other *** search
- unit Unit5;
-
- interface
-
- uses
- WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Buttons, ExtCtrls;
-
- type
- TForm5 = class(TForm)
- ListBox1: TListBox;
- Panel1: TPanel;
- BitBtn1: TBitBtn;
- procedure BitBtn1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form5: TForm5;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm5.BitBtn1Click(Sender: TObject);
- begin
- Close;
- end;
-
- end.
-