Color of TFrxSysMemoView

TFrxSysMemoView do not have Color property any more so all my existing report with TFrxSysMemoView lost their color.

I understand I can use Fill to specify color but it will be much work for hundreds of old reports.

Is it really necessary to remove an existing property and causing so much troubles for us? Or at least can it auto change the color to fill.backcolor when reading in old format report files?

Thank you.

Comments

  • gpigpi
    edited 1:45AM
    If you have a sources - you can modify frxClass.pas
    TfrxSysMemoView = class(TfrxCustomMemoView)
    public
    class function GetDescription: String; override;
    published
    property AutoWidth;
    property CharSpacing;
    property Color; //add this line
  • edited 1:45AM
    gpi wrote: »
    If you have a sources - you can modify frxClass.pas
    TfrxSysMemoView = class(TfrxCustomMemoView)
    public
    class function GetDescription: String; override;
    published
    property AutoWidth;
    property CharSpacing;
    property Color; //add this line

    Thank you for your response.

    Will this be added to later version or I need to manually update and compile for every update?
  • edited 1:45AM
    when i run this program, system throw error Table is not connected to the data. Register the data using Report.RegisterData method.
    Who can give me a hand. or give me a simple in asp.net web form.

Leave a Comment