TRzPropertyStore lacks int64 storage

Home Forums Konopka Signature VCL Controls (formerly Raize Components) TRzPropertyStore lacks int64 storage

Viewing 0 reply threads
  • Author
    Posts
    • #2493
      Martijn Tonies
      Participant

        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

    Viewing 0 reply threads
    • You must be logged in to reply to this topic.