Loop through objects in MasterData Band

How would I do this in the MasterData.OnBeforePrint function. I want to loop through the objects in the MasterData band in order to change their fond style to bold. Like a FOR loop.

Thank you.

Comments

  • gordkgordk St.Catherines On. Canada.
    edited June 2010
    var
    i: Integer;
    c: TObject;

    for i := 0 to Sender.Objects.Count - 1 do
    begin
    c := Sender.Objects
    if c is TfrxMemoView then
    TfrxMemoView©.font.style :=fsbold;

    end;
  • Thanks for the code. I have been digging for this code here and there for a few days. At last I found it in this thread.

Leave a Comment