nicocizik
Comments
-
I'm a bit unclear about what is happening. Is the line of code below your
own code or is it somewhere in the RB source? There is a DatabaseName
property available in the TdaMetaData class but I am unaware of the DataSet
property. P… -
Mike,
TppVariables do not have any built-in functionality. You should always use
the OnCalc event when making calculations with a TppVariable. The one
exception is when you are calculating a subtotal for each page inside theHi Chris,
There are no known issues like this one with ReportBuilder. Does this
happen with every image you try to add to your report? If not, please send
an image that does cause this behavior and I'll test it here.
supp…Hi Chris,
This is not a known issue with ReportBuilder. Which version of
ReportBuilder are you using? Be sure the transparent property is set to
False. Also be sure you have the latest version of your printer and
graphic…HI Vincent,
You can calculate the sum of the amount inside a subreport at the end of the
main report by using TppVariable components. Simply place an invisible
TppVariable inside the detail band of the subreport, and another Tp…Hi Al,
It is possible to remove components from ReportBuilder but unfortunately it
is not possible to remove other buttons such as New and Open without
changing the RB source.
--
Carlos,
When exactly is this error occuring? When you load the designer at design
time? When you load an older template file into ReportBuilder? Which
version of ReportBuilder are you using? It sounds like this could be a
Hi Jarrod,
You still need to define the negative number format or else it will use the
default. Try using something like the following...
#,0.00;#,0.00
--
Hi Michael,
Below is some code one of our customers used to enable the mouse wheel at
runtime for the report previewer. Hopefully this will help you get on the
right track.
unit AJBPreviewPlugIn;
interface…Hi Ace,
My suggestion would be to use the DataPipeline.Fields[] property to access
these fields in your database. You can use the Fields Editor on the
DBPipeline to define the names of the fields you would like to use, then
Hi Etienne,
Are you loading templates or perhaps using report archives? If so, this
could be the reason you are loosing this value. Try tracing into the
ReportBuilder source and see if the printer device thinks DelegateCopies …Etienne,
When DelegateCopies is set to True, ReportBuilder only sends one copy of the
report to the printer and the printer takes care of printing a certain
number of copies of that report. See the ppPrintr.pas file inside the<…Hi Etienne,
The reason you are seeing the behavior is that some printers do not natively
support copies of documents so by default ReportBuilder will take care of
this function. To disable this feature and allow your printer to…Hi German,
This is interesting behavior. Be sure that when you link the datasets in
DADE, you are dragging the detail field to the master dataset. If possible,
please send me an example of this behavior to support@digital-meta…Hi German,
1. How are you linking the queries? If you are linking them using
datapipeline linking, you need to be sure you order each dataset on its key
field, otherwise, you will see no data.
2. What are you doing…Hi Steve,
Girish is correct... if you need to keep the same quality resolution and
clarity when resizing an image in a report, you will need to use the wmf
format. ReportBuilder does not currently support adding Vector graphics…Hi Michael,
Calling TppDevice.CancelJob will result in the TppViewer.Busy property to
return False. Busy is also set to False once the device is done printing
when the TppDevice.EndJob method is called.
--
Peter,
When you set the Band.OutOfSpace property to True, the report engine will
think that the band has run out of space and break to the next page. The
only reason you would be seeing two pages when you break is that there is…This question was handled through email. Please do not cross post.
--
Hi Peter,
Be sure you have the ShiftRelativeTo property set for each subreport. Then
try setting the third subreport to a Section style subreport. This will by
defintion start a new page for the subreport.
--
Hi Steve,
This is not a known issue with ReportBuilder. As a test, try commenting
out all your event hander code and see if that makes a difference. If not,
please send a small example of this behavior in .zip format to
…Mikael,
If you create a new report and execute it, do you still receive the
exception? Are you able to trace into the ReportBuilder code or your code
where the exception is occuring? We have had no issues like this with
p…Hi Paul,
You can access the LockType of the TADOQuery by typecasting the DataSet of
the QueryDataView in DADE. Below is an example of code I wrote to change
the LockType at runtime...
TADOQuery(daADOQueryDataView1.Da…Hi Jennifer,
As a test, try commenting out all your event handler code and see if that
helps. If so, periodically begin adding the code back to isolate the
problem. If this does not help, please download a trial version of
Hi Joseph,
Try using the TppLabel.Band.Report property.
--
Hi Nathan,
Sorry about the delay in this response... it took a little reasearch to find
a solution
. Inste… Hi Brad,
This is not a known issue with ReportBuilder. Are you able to recreate the
issue using one of our demo applications? As a test, try commenting out
your event handler code (except for the necessary JITPipeline code) an…Hi Jens,
Unfortunately there is no way to show the designer window before
ReportBuilder tries to access the dataset. To speed up the loading process,
set your dataset's Active property to False and set the TppDesigner.ShowData<…Hi Gerardo,
How is each line accessed? Are you pulling this document off a database
line by line and printing the lines in the detail band using at dbText
component, or are you placing a TppMemo component inside the detail band…Hi Sara,
Be sure your main report and CrossTab component are not connected to the
same datapipeline. Since the CrossTab will traverse the data on its own,
you will be seeing a CrossTab for each record in the dataset.