home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 January
/
Chip_1999-01_cd.bin
/
zkuste
/
delphi
/
D1
/
DRBOBC.ZIP
/
DRBOB.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-02-20
|
685b
|
32 lines
unit DrBob;
interface
uses Classes;
Type
TDrBob = class(TComponent)
private
{ Private 'dummy' field for read-only design property About... }
Dummy: String;
protected
{ Protected 'FAbout' declarations }
FAbout: String;
public
{ Public class declarations (override) }
constructor Create(AOwner: TComponent); override;
published
{ Published About property }
property About: String read FAbout write Dummy;
end {TDrBob};
implementation
constructor TDrBob.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FAbout := 'TDrBob (c) 1996 by Bob Swart (aka Dr.Bob - 100434,2072)'
end {Create};
end.