Accessing report components from delphi unit

I want to control visibility of some components such as MasterBand before printing in delphi code. How can I refrence components in report? (Other than OnBeforePrint Event)

Comments

  • edited 3:33PM
    You can use the FindObject() method, like this, where MyReport is a reference to a TfrxReport object:

    var
    Band: TfrxBand;
    begin
    Band := MyReport.FindObject('MasterBand1') as TfrxBand;
    end;

    All you need is the name of the object.

    Chris

Leave a Comment