home *** CD-ROM | disk | FTP | other *** search
- unit voxdec2;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, Buttons, ExtCtrls;
-
- type
- TForm2 = class(TForm)
- Panel1: TPanel;
- Panel2: TPanel;
- BitBtn1: TBitBtn;
- Memo1: TMemo;
- procedure BitBtn1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form2: TForm2;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm2.BitBtn1Click(Sender: TObject);
- begin
- form2.hide;
- end;
-
- end.
-