nicocizik
Comments
-
Hi Tony,
1. Be sure the DBMemo is in fact inside the region. Use the report tree to
be certain.
2. Set the Stretch property of the region and the memo to True.
3. Set the PrintHeight property of the band yo… -
Hi Stacey,
What has changed since you had this working correctly? As a test try
downloading the latest (trial) version of ReportBuilder that supported
Delphi 5 (7.04).
--
Regards,
Nico Cizik
D… -
Hi Shane,
The easiest way to go about this would be to handle all your calculations in
SQL code. You could perhaps join the two tables and select the sums as a
single dataset so RB can access them from the same datapipeline.<… -
Hi Mark,
This may be possible using the Windows API however there is currently no
built-in functionality in ReportBuilder to do so.
--
Regards,
Nico Cizik
Digital Metaphors
in How to determine whether user click ok in print dialog? Comment by nicocizik December 2009 -
Hi Mark,
Posting both of those articles at once can be confusing.
The first article refers to whether the user selected the "cancel" button of
the actual printer dialog. The second article is meant to let you know if
Hi Sherlyn,
Take a look at the following articles on the printer dialog.
------------------------------------------
Tech Tip: Detecting whether PrintDialog's
Cancel button was Selected
---------------…Hi Chau,
For this case, you will need to set the TppReport.PrinterSetup.CanGrayScale
property to False when using a black and white printer.
--
Regards,
Nico Cizik
Digital Metaphors
in ReportBuilder 10.08: TppLabel with font color other than clBlack will not print on dot matrix printe Comment by nicocizik June 2008Hi Jeremy,
Setting the KeepTogether property of a Subreport will move the initial
contents inside the subreport to the next page if a page breaks in an
attempt to keep everything on a single page. This will apply for the enti…Hi Jeremy,
Which version of ReportBuilder/Delphi are you using?
If possible please create a simple exmple that shows this behavior and send
it in .zip format to support@digital-metaphors.com so I can take a look at
…Hi Nordin,
You have two options in this case.
1. Depending on which database you are connecting to, you could use the
Extract() function. You mentioned that this does not work so perhaps your
DB does not support t…Hi Ali,
There is now a patch available for RB 10.08 that fixes this problem. Send a
small email to support@digital-metaphors.com requesting the patch and we'll
send it to you.
--
Regards,
Nico Cizi…Hi Stef,
These are design-time errors. Try reinstalling ReportBuilder and see if
that solves the problem.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Stef,
What type of errors are you receiving? If you remove DelphiSpeedUp from
your machine are you still getting the errors?
My first guess would be that you are loading templates that are referencing
events tha…Hi Yusuf,
Which version of ReportBuilder did you upgrade from? There is a patch
available for the dissapearing text issue. Please send an email to
support@digital-metaphors.com requesting the patch and we'll send it to you <…Hi Ali,
Do you have ppBarCod in your uses clause? If you take a look at the
ppBarCod.pas file located in the \RBuilder\Source\... directory you will see
that the TppCustomBarCode class is the first class defined.
-…The TppCustomBarCode class is located in the ppBarCod.pas file and is the
ancestor to TppBarCode and TppDBBarCode. The AutoSize property is a public
property of the TppPrintable class which is the ancestor to all printable
compone…Hi Benjamin,
When you load a template, all current parameters and properties of the
report are replaced with the items saved with the template. You can use the
template events to set any parameters of a report after it has lo…Hi Alex,
1. If you would like to show the current date, try using the
TppSystemVariable component rather than a TppVariable.
2. Try upgrading to the latest version of ReportBuilder 10.09. In my
testing the TppSys…Hi Everett,
Please send a simple example that demonstrates the issue to
support@digital-metaphors.com in .zip format that I can run on my machine.
I will test it with RB 10.09.
--
Regards,
Nico Cizi…Hi Everett,
First I would suggest updating your version of ReportBuilder to the latest
(10.09) and testing with that. If you are still seeing the problem, please
put together a simple example that demonstrates the behavior an…Hi Nikolai,
For the DBImage, if you are loading JPEG image files, you will need to set
the GraphicType property to JPEG.
--
Regards,
Nico Cizik
Digital Metaphors
in How to add Jpeg support? Comment by nicocizik July 2008Hi Chantal,
Currently the autosearch dialog is only designed to show "and" between
search criterias however it is on our todo list to enhance this to support
"or". You will currently need to create a custom autosearch dialog …Hi Ali,
At what point in the code below does the AV occur? If you trace into the
ReportBuilder source, (i.e. set your library path to \RBuilder\Source, and
your debugger to stop on exceptions) where is the problem occuring?Hi Ali,
At what point in the code below does the AV occur? If you trace into the
ReportBuilder source, where is the problem occuring?
--
Regards,
Nico Cizik
Digital Metaphors
in Access violation at address 008ED5FE...read address 000000108 Comment by nicocizik July 2008Hi John,
Are you receiving this error at runtime or design time? Are you able to
recreate this issue with a simple example (Report on a form with a button)?
--
Regards,
Nico Cizik
Digital Metaphors<…Hi John,
I am unable to recreate this behavior on my machine. If possible please
provide me with the exact steps I need to take to recreate it.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Neil,
In my testing with RB 10.09, the components listed in the Report Objects
treeview of the calc tab directly match the z-order of the components on the
report. Have you tried using the latest version?
--
Hi Vassilis,
We did in fact fix this issue a while back however it ended up breaking many
of our existing customers' reports who depend on the backward compatibility
of the product. This is why we decided to revert back for t…Hi Vassilis,
This is a known issue with shapes that has been present in the product since
the beginning. The recommended way to create grids/forms with ReportBuilder
is to use the TppLine object, similar to the way they are d…Hi Paul,
The easiest way to accomplish this would be to implement the OnReceivePage
event of the screen device and manually add a draw command from there.
Take a look at the TppScreenDevice.AddWaterMark routine located in…