- unit Unit2;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ExtCtrls;
- type
- TForm2 = class(TForm)
- Button1: TButton;
- Button2: TButton;
- Panel1: TPanel;
- Edit1: TEdit;
- Label1: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- Form2: TForm2;
- implementation
- {$R *.DFM}
- end.