Hi all,
I noticed that the PropertyStore lacks int64 storage, this can be fixed using:
In TRzpropertyStore.Load
tkInt64:
begin
StrValue := FRegIniFile.ReadString( S, FullPropName, ” );
SetInt64Prop( Comp, PropName, StrValue.ToInt64 );
end;
and in .Save
tkInt64:
FRegIniFile.WriteString( S, FullPropName, GetInt64Prop ( Comp, PropName ).ToString );
Hope this helps.
With regards,
Martijn Tonies