UNIT2.PAS
资源名称:tcdrom.zip [点击查看]
上传用户:jzxjwgb
上传日期:2007-01-06
资源大小:64k
文件大小:0k
源码类别:
SCSI/ASPI
开发平台:
Delphi
- unit Unit2;
- interface
- uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- ProgramIcon: TImage;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- Comments: TLabel;
- OKButton: TButton;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- AboutBox: TAboutBox;
- implementation
- {$R *.DFM}
- end.