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
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
const VarName: String; var Value: Variant);
begin
end;
procedure TForm1.frxUserDataSet1GetValue(const VarName: String;
var Value: Variant);
begin
end;