www.pudn.com > MP4Cam2AVI_SRC_1.2.zip > GPLForm.pas
unit GPLForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
TfGPL = class(TForm)
Memo1: TMemo;
Panel1: TPanel;
Button1: TButton;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fGPL: TfGPL;
implementation
{$R *.dfm}
procedure TfGPL.Button1Click(Sender: TObject);
begin
fGPL.Hide;
end;
end.