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

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 4:14PM
    You can resolve this problem if you have a sources. Do you have FR Professional or FR Enterprise?
  • edited 4:14PM
    gpi wrote: »
    You can resolve this problem if you have a sources. Do you have FR Professional or FR Enterprise?
  • edited 4:14PM
    I've professional edition.
  • gpigpi
    edited 4:14PM
    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 4:14PM
    Great, its'work.
    Thanks for your code.

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.