Home digitalmetaphors Comments
New Blog Posts: Merging Reports - Part 1 and Part 2

digitalmetaphors

About

Username
digitalmetaphors
Joined
Visits
51
Last Active
Roles
Administrator

Comments

  • It is a current limitation. The problem is that it would require a two pass
    report to get the absolute page count so that a multiple report can generate
    correctly, even when a single page report would print as desired in our
    current i…
  • In the groups dialog, there is a check box to reset the page count to 1 when
    each new group begins printing.


    Cheers,

    Jim Bennett
    Digital Metaphors


  • The bpls are still named *55 in RB 6 for Delphi 5 instead of *65.

    Cheers,

    Jim Bennett
    Digital Metaphors


  • There is a public property on the Report.PrinterSetup object called
    DelegateCopies. Set this to true. This will cause the pages for the current
    copy to be sent to the printer. When it is false(default) all of the pages
    are generated f…
  • I was curious if removing the rtf engine would have helped speed things up,
    looks like it didn't. From my understanding, 91kb is pretty big for a 1
    inch square jpg. I'd try to reduce the size of the jpgs if at all possible.

  • What is the speed difference if you remove the rtf control and use separate
    dbImage and dbMemo components?


    Cheers,

    Jim Bennett
    Digital Metaphors


  • ReportBuilder has Autosearch which provides ask-at-runtime parameters. Look
    in the installed RBuilder\Demos\Autosearch for some examples of this. When
    designing a report using DADE, autosearch is handled automatically by adding
    sear…
  • The current viewer doesn't have this capability to preview all of the pages
    and scroll through them. The viewer is good at rendering a single page. You
    may be able to use the current viewer, but use a scrollbox with a viewer
    inside of…
  • You can increase the page height so that in the default previewer the report
    will only be one page long. View the report at 100%.


    Cheers,

    Jim Bennett
    Digital Metaphors


  • Be sure to install RB 6.02. The only way a page will generate is if there
    is a control that is overflowing onto the next page. It is possible that you
    have a static height memo which doesn't fit on the last page of the
    subreport? Us…
  • You could set the label to ShiftRelativeTo the subreport, if a subreport
    exists in the summary band. The band has an objects array property which
    you can loop through looking for a subreport component by checking its class
    type. The…
  • Sorry, for the delay. Can you get this behavior using our interbase end
    user demo? We haven't had any reports of problems like this. After running
    our interbase demo here, I created reports and previewed edited them using
    the BDE a…
  • There is a SkipWhenNoRecords property on the detail datapipeline which will
    cause the master record not to print when there are no detail records.


    Cheers,

    Jim Bennett
    Digital Metaphors


  • How is the data setup? Is it master-detail?

    RB can't order the data for you based on the groups dialog. The data must be
    sorted on the dataset level. Hook a TDBGrid up to your datasource on the
    form to see the records the repor…
  • I tried to reproduce the error by only using the designer-I couldn't
    reproduce it. So, there must be something different about the code the
    designer uses to hide the row sub totals than from what your code is doing.
    The crosstab desi…
  • Upgrade to RB 6.02. The cross tab is noting but lists and indexes, and we
    fixed a problem like this for RB 6.

    Contact info@digital-metaphors.com for a free upgrade.


    Cheers,

    Jim Bennett
    Digital Metaph…
  • Use another TppVariable and its OnCalc event to perform this calculation.
    There is a CalcOrder property you can use to set the order that the OnCalc
    event handlers are fired. Be sure to set the variable's datatype property
    as well.
  • We use an HP Laserjet 5 here and it prints with no problem for RB 5.56.
    Install the latest driver from HP. Can you send us a demo report and we'll
    print it on our HP LaserJet 5 printer to investigate this further,
    support@digital-met…
  • Robert, Are you using RB5.56 or 6.02? Are you also using the HP LaserJet 5
    printer?
    Can you send a demo to support@digital-metaphors.com


    Cheers,

    Jim Bennett
    Digital Metaphors


  • What is the default printer installed on the machine? Some printers have
    different measurements which have been defined for the unprintable areas on
    the paper, as that may cause the problem? This isn't a known issue with
    5.56.
  • Use a DBCalc in the group header band and set its LookAhead property along
    with the ResetGroup property.


    Cheers,

    Jim Bennett
    Digital Metaphors


  • I placed a memo next to a subreport in the detail band. The memo was as tall
    as the page. The subreport printed multiple records and overflowed onto the
    next page. If the memo was set to ReprintOnOverflowm, it did so as expected.
    Can …
  • Create a class which descends from TppCustomPreview, just like TppPreview
    does, but without the buttons. Create a form and pass the form in the
    constructor of your preview class. The form will become the parent of the
    preview and thi…
  • The composite report, like in quick reports, can be accomplished using
    ReportBuilder's subreport component. The subreport has a print behavior
    property which should be set to Section style. This will cause each
    subreport to begin prin…
  • You can either change the properties of components in the report, or create
    two sets of components in the report. With two components, you can toggle
    their visible property to only show one or the other. You can place many
    components …
  • Nard already handled this in the EndUser newsgroup. Please don't cross
    post- thanks.


    Cheers,

    Jim Bennett
    Digital Metaphors


  • Thanks for reporting the issue. I'll let you know when we have a fix for
    this.


    Cheers,

    Jim Bennett
    Digital Metaphors


  • What is happening in your event handlers? Can you send us a demo report?


    Cheers,

    Jim Bennett
    Digital Metaphors


  • There is a dialog in the report designer File | Print To File Setup... In
    there you will need to specify which text controls should print in the text
    file. There is also a Save property which can be set to true on the text
    components…
  • Consult the advantage documentation on the sql syntax, but it would be
    something like:

    SELECT Employee.Name,
    Employee.HireDate,
    Extract(Month From Employee.HireDate) AS Extract_Month
    FROM …