[fpc-devel]Maininstance - bad type definition

2003-10-05 Thread darekM
In SYSTEM variable hprevinst, HInstance, MainInstance: longint; must be CARDINAL like in WINDOWS My suggest is to define THandle in unit System ___ fpc-devel maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fp

[fpc-devel]Override Default Value of Property

2003-10-05 Thread Judison
Hi all, It's posibile to override the default value of a property??? for example: TClassA = class privare FInt: Integer; published property Int: Integer read FInt write FInt default 0; end; TClassB = class(TClassA) published property Int default 5; end; when writing o