UNIT2.PAS
上传用户:jzxjwgb
上传日期:2007-01-06
资源大小:64k
文件大小:0k
源码类别:

SCSI/ASPI

开发平台:

Delphi

  1. unit Unit2;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  4.   Buttons, ExtCtrls;
  5. type
  6.   TAboutBox = class(TForm)
  7.     Panel1: TPanel;
  8.     ProgramIcon: TImage;
  9.     ProductName: TLabel;
  10.     Version: TLabel;
  11.     Copyright: TLabel;
  12.     Comments: TLabel;
  13.     OKButton: TButton;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19. var
  20.   AboutBox: TAboutBox;
  21. implementation
  22. {$R *.DFM}
  23. end.
  24.