Can't see more of 5 pages in designer whith Large Design Height=TRUE

edited 12:18PM in FastReport 4.0
I've set Large Design Height to TRUE but if I need six child (A4 height) and one MasterData, the vertical scroll bar go down only five page, and so i can't see page 6 and 7.
How can resolve this problem?
Thanks.

Comments

  • gpigpi
    edited 12:18PM
    You can resolve this problem if you have a sources. Do you have FR Professional or FR Enterprise?
  • edited 12:18PM
    gpi wrote: »
    You can resolve this problem if you have a sources. Do you have FR Professional or FR Enterprise?
  • edited 12:18PM
    I've professional edition.
  • gpigpi
    edited 12:18PM
    Modify frxDesgn.pas
    procedure TfrxDesignerForm.UpdatePageDimensions;
    var
      h: Extended;
    begin
      if FPage is TfrxReportPage then
      begin
        with FPage as TfrxReportPage do
        begin
          ScrollBox.HorzScrollBar.Position := 0;
          ScrollBox.VertScrollBar.Position := 0;
    
          FWorkspace.Origin := Point(10, 10);
          h := PaperHeight;
          if LargeDesignHeight then
            h := h * 5; //change this line
    
  • edited 12:18PM
    Great, its'work.
    Thanks for your code.

Leave a Comment