home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 February
/
PCWorld_1999-02_cd.bin
/
temacd
/
HotKeys
/
AboutPrp.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-02-13
|
530b
|
24 lines
unit AboutPrp;
interface
uses
WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls, Buttons;
type
TAboutInfo = class( TPersistent )
private
FCopyrightDate: string;
FCompany : string;
FDescription : string;
public
property CopyrightDate: string read FCopyrightDate write FCopyrightDate;
property Company : string read FCompany write FCompany;
property Description : string read FDescription write FDescription;
end;
implementation
end.