Custom column and column gap? Pls help...

Hi.
I want to do report same this pic.

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 12:06AM
    use the Band collum settings of the data band for hrizontal
  • edited 12:06AM
    I am using horizantal masterdata band already.
    Masterdata columns properties=6.
    But I am not customizing column gap.
    Column gap is standart.
  • gordkgordk St.Catherines On. Canada.
    edited 12:06AM
    look at the main demo basic reports multi-column bands
  • edited 12:06AM
    I looked Main>Basic Reports>Multi-Column Bands demo.
    But this demo is simple.
    Standart Column and standart column gap.
    Pls send simple report sample for me.
    How can i do this report.
    Thanks.
  • edited 12:06AM
    Pls help!!!
    I looked Main>Basic Reports>Multi-Column Bands demo.
    But this demo is simple.
    Standart Column and standart column gap.
    Pls send simple report sample for me.
    How can i do this report.
    Thanks.
  • gpigpi
    edited 12:06AM
    Use for example:
    procedure Band4OnBeforePrint(Sender: TfrxComponent);
    begin
         case (<Line> mod 3) of
           1: Engine.CurX := 0;
           2: Engine.CurX := -10;
           0: Engine.CurX := 50;
         end;                 
    end;
    
  • edited 12:06AM
    Very very thanks Mr. gpi.
    I can did my report.
    Again very very thanks...
  • edited 12:06AM
    I am giving error again Mr. gpi >[img]style_emoticons/<#EMO_DIR#>/sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> Code: procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin case (<Line> mod 6) of 1: Engine.CurX := 70; 2: Engine.CurX := 75; 3: Engine.CurX := 110; 4: Engine.CurX := 115; 5: Engine.CurX := 150; 0: Engine.CurX := 155; end; begin end. Report Design:[/img]
  • gpigpi
    edited 12:06AM
    See report template in attach

Leave a Comment