BCB6 + Variables = NULL

I am using c++builder6 and FR3.

I want to access in the frxReport->Variables method from the code but this one is always NULL!

How can I add categories and variables from the code?

Thanks

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 6:15PM
    Please read programmers manual.
    ;)
  • edited 6:15PM
    Yes, I have read it, but it doesn't work...

    I have created a frxReport and all the methods and properties of the frxReport->Variables crash because the frxReport->Variables is equal to NULL. Then I cannot access to the variables.
  • edited 6:15PM
    It's really NULL... After 2 hours of debugging I've discovered that BCB does not like such constructions:

    private
    FA: TSomething;
    public
    property A: TSomething read FA;

    I've changed it to
    private
    FA: TSomething;
    function GetFA: TSomething;
    public
    property A: TSomething read GetFA;

    And it works now. BCB really ######... I start understanding why ReportBuilder does not have BCB version...
  • edited 6:15PM
    Thanks a lot for the quick answer. ;)
    When can I receive this corrected version?
    Could you send me this quickly?
  • edited 6:15PM
    No, I can't. Wait for the next release (in the next week).

Leave a Comment