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

nicocizik

About

Username
nicocizik
Joined
Visits
2,329
Last Active
Roles
Administrator
Company Name
Digital Metaphors Corporation

Comments

  • Stacey,

    The article below explains which files you need to include in your 'uses'
    clause for all dade components to work correctly. Also, be sure to check
    your database settings and see if your connection properties are configu…
  • Jack,

    Here is a good example of how to create a complete report in code.

    http://www.digital-metaphors.com/tips/DynamicReportCreation.zip
  • Janusz,

    We have no know issues like this one with the crosstab component.

    - Make sure your customer is using the latest printer driver for their
    printer.

    - Ask your customer to try your application on another co…
  • Janusz,

    Which version of ReportBuilder are you using? Make sure that your customer
    is using the latest printer driver for the printer they are using. Also
    make sure the user is not changing the font inside of the crosstab
  • William,

    You can adjust the page margin by selecting the File | Page Setup menu
    option in the Report Designer window. From here select the "margins' tab
    and adjust the margin width as you need.

    --
  • Russell,

    The TppPreview object gets notified in the TppViewer's DoOnPageChange
    trigger, so this is a good approach to take in your case.

    --
  • Moothy,

    Try creating two identical variables (one in each column) and align them to
    their corresponding variable. Then you can toggle the visibility of each
    variable based on the value of the above two variables.

    -- …
  • Christophe,

    It is possible to use the label wizard without the ppDesigner. Below is a
    link to an example that shows how to do this.

    in label wizard dialog box during execution Comment by nicocizik May 2003
  • Phil,

    I am having a little trouble understanding what you would like your report
    to look like. Would you like each income range in it's own column? Please
    provide a little more information (i.e. a picture or sample report temp…
  • Skot,

    Sorry, I didn't understand exactly what you were after the first time. You
    are going to want to add the following lines to the Report.PrintDialogCreate
    event to get the results you need. You can leave the default devicet…
  • Skot,

    You can set the file format you need using the Report.DeviceType property.
    If you are using TExtraDev to print in PDF, I believe you want to set your
    device to 'PDFFile'. Be sure to set the Report.AllowPrintToFile propert…
  • Sanford,

    The article below gives the full feature list of ReportBuilder along with
    some reasons to use our product. Also, some time ago (as a training
    exercise to learn Delphi and ReportBuilder) I made a small application that<…
  • Mike,

    You are going to want to make duplicate calculations for each variable in
    different groups inside the OnCalc event of the Detail variable. Then you
    need to set the reset for each of the group variables to GroupEnd. This<…
  • Mike,

    Create a variable in the group footer and update the value of that variable
    in the OnCalc event of the variable in hte detail section. Something like
    this...

    procedure Variable1Calc(Sender: TObject; Value: Vari…
  • Neil,

    It looks as though you can solve this problem by placing 3 regions around
    each set of shapes and memos (side by side). For example region 1 will have
    11 and 21, region 2: 12 and 22, and region 3: 13 and 23. Then by setti…
  • David,

    Try downloading a trial copy of the ReportBuilder 7.02 Server Edition and
    check out some of the demos that come included with that software. These
    demos show exactly what ReportBuilder Server is capable of and I think it…
  • Natalie,

    Exactly how big is your report going to be? The CachePages property does
    have the potential of causing memory issues but this is machine dependant.
    If your report mainly going to be text and lines, you should not have …
  • Natalie,

    Try setting the Report.CachePages property to True. If this does not help,
    please send a working example demonstrating the problem in .zip format to
    support@digital-metaphors.com and we'll take a look.

    --
  • Jay,

    Make sure you are loading the .rtm into the original form with the report
    component you originally used. The event handler name is the same in both
    RB 5.54 and RB 7.02. Click on the report component and see if the event i…
  • Hi Bora,

    Sorry for the misunderstanding. I'm glad you found a solution. To answer
    your question, yes a calculation based on another calculation is reliable as
    long as the timing is correct and the calc order is set for the var…
  • Bora,

    Try setting the DBCalc for the sum to "Look Ahead" by changing the LookAhead
    property to true. You can also set a page break reset by creating a
    TppVariable and adjusting the timing to reset on the page break. Right
  • Jean,

    Yes, it is possible to manually show an autosearch criteria with manually
    edited sql.. The example below shows how to do this. Notice that the
    autosearch values will need to be extracted from the dialog and added into
  • Martin,

    You should see an entry for ReportBuilder in the Add/Remove Programs list of
    the Control Panel. If you do not see it, there could be a problem with your
    regristry. Make sure you have uninstalled all versions of ReportB…
  • Martin,

    We have no known errors like this one in RB 7.02. You may have a corrupt
    install. Please follow the instructions below to clean up a corrupt
    installation and reinstall ReportBuilder.

    ------------------------…
  • Martin,

    ReportBuilder uses the printer driver. Try either updating your printer
    driver or perhaps try installing a known working driver such as the HP
    LaserJet 4 driver and see if that works.(you do not have to have an HP
  • Mark,

    Check out the installed dynamic subreport loading demos in the
    \RBuilder\Demos\3. EndUser\5. Dynamic Subreport Loading... directory.

    --
  • Bob,

    We have had no know issues with the ReportBuilder/HP 2100 combination. What
    specifically are the symptoms of the problem printing? It is most likely
    the print driver, however we would like you to try downloading the trial…
  • Bob,

    There are no known issues like this. The version of ReportBuilder you are
    using is over three years old and there have been numerous fixes and
    enhancements since then. Please download a trial copy of ReportBuilder 7.02
  • Paul,

    If you free the form in the ReportPreviewFormClose event you are freeing it
    too early. When the report tries to exit, it is referencing an object that
    is not there. This is the reason you are receiving the AV errors. Yo…