How to merge the cells?

edited March 2014 in FastReport 3.0
Hello!
Is it possible to merge (group) cells with the same values, as in the example above (marked by the red circles)?
How can I do this?

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 10:45PM
    You can join cells of equal value in version 4
  • edited 10:45PM
    Use thsi code for which frame u want to join i have done for memo68

    procedure Memo68OnBeforePrint(Sender: TfrxComponent);
    var
    LastState :string;
    begin
    with Memo68.Frame do
    if LastState <> <DBXQuery5."ACTIVITY">
    then Typ := ftTop + ftLeft
    else Typ := ftLeft;
    LastState := <DBXQuery5."ACTIVITY">;
    end;
  • edited 10:45PM
    Mahaveer wrote: »
    Use thsi code for which frame u want to join i have done for memo68

    procedure Memo68OnBeforePrint(Sender: TfrxComponent);
    var
    LastState :string;
    begin
    with Memo68.Frame do
    if LastState <> <DBXQuery5."ACTIVITY">
    then Typ := ftTop + ftLeft
    else Typ := ftLeft;
    LastState := <DBXQuery5."ACTIVITY">;
    end;
    Thank you.

Leave a Comment