Hello everyone,
I got a problem, how to convert the following code to class implemention>
type
TTest = object
public
AValue: Integer;
end;
implementation
const
TTest_Null: TTest
= (AValue: 0);
----------------------------------------
to
TTest = class(TObject)
public
AValue: Integer;
end;
How to declare implement const in TObject?
Thanks in advance.
Best Regards
leigh
---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
- [DUG]: Advanced Delphi course Antony Gardiner
- RE: [DUG]: Advanced Delphi course Jason Coley
- Re: [DUG]: Declare const object leigh
- Re: [DUG]: Declare const object Aaron Scott-Boddendijk
- Re: [DUG]: Declare const object leigh
- Re: [DUG]: Declare const obj... Aaron Scott-Boddendijk
- Re: [DUG]: Declare const... leigh
- RE: [DUG]: Declare c... Dennis Chuah
- RE: [DUG]: Declare c... Nic Wise
- Re: [DUG]: Declare c... Aaron Scott-Boddendijk
- Re: [DUG]: Declare const obj... Aaron Scott-Boddendijk
- RE: [DUG]: Declare const obj... Cory Shanks
- Re: [DUG]: Advanced Delphi course patrick . dunford
