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 9:00PM
    You can join cells of equal value in version 4
  • edited 9:00PM
    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 9:00PM
    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

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.