home *** CD-ROM | disk | FTP | other *** search
- unit Unit4;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, ExtCtrls;
-
- type
- TNewForm2 = class(TForm)
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Button1: TButton;
- Panel1: TPanel;
- procedure Button1Click(Sender: TObject);
- private
- { Private-Deklarationen }
- public
- { Public-Deklarationen }
- end;
-
- var
- NewForm2: TNewForm2;
-
- implementation
-
- {$R *.DFM}
-
- procedure TNewForm2.Button1Click(Sender: TObject);
- begin
- Close;
- end;
-
- end.
-