nicocizik
Comments
-
Hi Augusto,
I am having a little trouble understanding the issue. Please if possible
send a small example demonstrating this behavior in .zip format to
support@digital-metaphors.com and I'll take a look at it for you.
Hi Emilie,
Below is a link to a small example showing how to use a two pass report with
the LookAhead property set to True to achieve what you are trying to do.
Hope this helps.
in Calculations with variables and DBcalc Comment by nicocizik September 2003Sorry, but the sort properties on the datapipeline were part of a legacy
version of ReportBuilder and were never fully implemented. You will need to
either sort your data initially using a SQL query or in a report with a
cross tab co…Hi Justin,
Unfortunately, there is no easy way to add custom SystemVariables to
ReportBuilder. You will either need to add to the current TppSystemVariable
source code or register a new one implementing your changes.
Hi Arnaud,
You will need to rebuild the rbIBE77 package to get the new version of
IBExpress to work with ReportBuilder. After opening the package in Delphi,
view the source and change the 'Requires' clause to reflect the curren…Hello,
I am a bit unclear about what you are trying to accomplish. Are you trying
to allow your users the ability to print separate copies of a report to
separate printers at once. If so you will still have to code somethingHi Bernd,
Ok, I was finally able to recreate the issue. Sorry about that. I went
ahead and wrote a small patch that fixes the problem. Please send a request
to support@digital-metaphors.com for this patch and I'll get it righ…Hi Bernd,
After following your exact steps, I am still unable to recreate this issue
using RB 7.03. Try updating to the latest version and test with that.
--
Hi Bernd,
I am unable to recreate this error on my machine and this was not a known
issue for RB 7.02. It is always recommended that you update to the latest
version of ReportBuilder, 7.03. If, when you update, the problem sti…Hi Regine,
In my testing I was able to get this working correctly. Here is the test
application that I made essentially using the code you gave below. Perhaps
try updating to ReportBuilder 7.03 before testing.
Hi Paul,
For future reference, we ask that you do not post attachments to the news
groups. If you need to send an attachment, please e-mail your quesiton to
support@digital-metaphors.com.
Looking at your code I was a…Hi Chris,
Try placing all the components in the band into a TppRegion with its
KeepTogether property set to True. Then everything in the region will move
to the next page when there is an overflow.
--
Hello,
It is possible to create a custom report component that descends from
TppCustomReport. In this custom component, you may add any properties you
need. Check out the TppReport class for an starting point on how you might<…Hi,
Here's a quick example of creating a label in code.
uses
ppCtrls;
procedure TForm.CreateLabel;
var
lLabel: TppLabel;
begin
lLabel := TppLabel.Create(Self);
lLabel.Band …Hi Arun,
This sounds like a printer issue. When ReportBuilder makes an API call to
print to the printer, it sends the page bounds and margins set by the user
in the Report Desinger. Regardless the page bounds and margins in
Hi Tony,
If you do not have your detail dataset linked to anything, the ReportBuilder
will not traverse that data. The only way I can see around this issue would
be to create a subreport that is connected to your detail data an…Hi Irek,
Check out the following example showing how to locate the last line on a
page using the detail band BeforeGenerate event.
http://www.digi…Hi Julie,
I noticed in one of your previous posts that you are creating a table in the
background. This could be what is causing the AV error as all versions of
RB before 7.0 were not thread safe. Try disabling the background …Hi Julie,
Which version of ReportBuilder/Delphi are you using? Are you using RAP for
your event handlers?
--
Hi Julie,
This could be due to a number of items. As a test, try commenting out your
event handlers and see if you still receive the AV error. Since this is a
large report, be sure you have the correct memory requirements to s…Hi Marco,
Unfortunately this is not a feature of ReportBuilder. If you would like to
see this effect, you will need to manually move each component in the "City"
column over to fill the space left by the "Address" column.
…Hi Tim,
For debuging purposes, you should be able to turn the "Build with runtime
packages" off and debug with your original source. If this option will not
work for you. I did a quick search in Google Groups
( in Re: Debug Report Builder Source Code Comment by nicocizik October 2003Hi Tim,
Be sure you \Rbuilder\Lib is no longer in your path. When a break point
has an x through it, this just means the code was never executed. As a test
place a report and a button on a form and in the button's onClick ev…Hi Tim,
That should do it for you. Now that you have \RBuilder\Source in your
library path you are building your applications with the ReportBuilder
source. Now you can set stops in our source and step through it to possiblyHi Tim,
You can point you library path to the \RBuilder\Source\... to debug the
ReportBuilder source.
--
Hi Michael,
I'm sorry, I don't know why I thought you were using DBISAM. Be sure that
all the code I mentioned in my previous post is currently in your custom
explorer, and is being executed properly. If possible, please send …Hi Michael,
Which version of ReportBuilder are you using? Are you able to recreate the
issue using our DBISAM end-user database demo? In my testing, the recycle
bin seemed to work correctly. You can see in the
TppReportE…Hi Arun,
The idea behind an .rtm file is to save a template of your report as a
separate file and then load it dynamically into an empty report component
saving space in the process. If you are using event handlers with report,…Hi William,
If the report is printing correctly on one printer and not on the other,
this is most likely a printer driver issue. ReportBuilder sends the same
Windows API commands to every print driver regardless the type or
Hello,
I am unable to recreate this issue on my machine. Please send a small
example demonstrating this behavior to support@digital-metaphors.com and
I'll find a solution for you.
--