UserDataSet

Hi,

I'm pushing custom data to the report via the TfrxUserDataSet object, however I'm confused over the OnGetValue and OnNewGetValue events.

What's the difference?

My report always seems to use OnNewGetValue() for pulling the values, but OnGetValue is also called (but using it results in an empty report)

Thanks,

Jim

Comments

  • gpigpi
    edited 2:12PM
    procedure TForm1.frxUserDataSet1NewGetValue(Sender: TObject;
    const VarName: String; var Value: Variant);
    begin

    end;

    procedure TForm1.frxUserDataSet1GetValue(const VarName: String;
    var Value: Variant);
    begin

    end;

Leave a Comment