www.pudn.com > yrsCapture.zip > Lic.pas


{******************************************************************************} 
{*                                                                            *} 
{*               Adirondack Software & Graphics Lisence Info                  *} 
{*          (C) Copyright Adirondack Software & Graphics 1996-1998            *} 
{*                                                                            *} 
{******************************************************************************} 
 
unit Lic; 
 
interface 
 
uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, 
  StdCtrls, ExtCtrls, NetGradient; 
 
type 
  TLicenseForm = class( TForm ) 
    Memo1: TMemo; 
    Bevel1: TBevel; 
    Button1: TButton; 
    NetGradient1: TNetGradient; 
    procedure Button1Click( Sender: TObject ); 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  LicenseForm: TLicenseForm; 
 
implementation 
 
{$R *.DFM} 
 
{==============================================================================} 
procedure TLicenseForm.Button1Click( Sender: TObject ); 
{==============================================================================} 
begin 
  Close; 
end; 
 
end.