Report with table layout

Hi,
I want to have a report with table layout like the attached file. How can I do it with Fast Report?

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 2:13AM
    turn on the memoviews frames
  • edited 2:13AM
    gordk wrote: »
    turn on the memoviews frames
    Have you any example?
    I want to draw lines in free space (spaces that not exists records in last page) to page footer section
  • You could probably add some empty "fake" entries to your dataset. Like copy your dataset into a memory dataset, add some empty records and let Fast Report process this dataset.
  • gordkgordk St.Catherines On. Canada.
    edited July 2014
    assuming you are using at least the standard version of fr.
    create a duplicate of your master band in an unattached child band, using empty memoviews
    write code in the footer band obp event to check the freespace available and call the engine.showband(childbandname) method.
  • edited 2:13AM
    gordk wrote: »
    assuming you are using at least the standard version of fr.
    create a duplicate of your master band in an unattached child band, using empty memoviews
    erite code in the footer band obp event to check the freespace available and call the engine.showband(childbandname) method.
    Can you send me an example or at least write required code?
  • gordkgordk St.Catherines On. Canada.
    edited 2:13AM
    while engine.freespace > childbandname.height do
    begin
    engine.showband(childbandname);
  • edited 2:13AM
    gordk wrote: »
    while engine.freespace > childbandname.height do
    begin
    engine.showband(childbandname);
    while engine.FreeSpace>child1.height do
    engine.showband(child1);
    But the engine.FreeSpace value is always 0.
    Must child1 band invisible(the visible property of child1 band =False) or must another solution?
  • gordkgordk St.Catherines On. Canada.
    edited 2:13AM
    in which event did you place the code
  • edited July 2014
    gordk wrote: »
    in which event did you place the code
    Hi, thanks for your help,
    I attached a report that its data source is biblio.mdb , please review it.
  • gordkgordk St.Catherines On. Canada.
    edited 2:13AM
    Add a header and a footer band to your report, they can be 0 height
    place the code in the obp event of the footer not the page footer.
    BTW
    you can use memoviw frames instead of lines for vertical lines
  • edited July 2014
    You said: "Add a header and a footer band to your report, they can be 0 height"
    Why do I must add header band to my report, is it necessary?
    Thanks

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.