home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
ABOUT.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-05-02
|
469b
|
32 lines
unit About;
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 宣言 }
public
{ Public 宣言 }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
end.