nicocizik
Comments
-
Hi Pascal,
If you would like to see the Calc and Data tab in the end user designer, you
will need to add daIDE and raIDE to your uses clause. See the article below
on the registration of ReportBuilder components.
<… -
Hi Rene,
Unfortunately the built in PDF Device that comes with RB 9.01 does not
utilize embedded fonts. I will look into adding this capability for the
next release of ReportBuilder.
--
Regards,
Ni… -
Hi Rene,
Is the Czech Language Export a separate add-on for Delphi 7 or are you
simply using the Czech regional setting in Windows? In my testing (with
Czech regional settings) the two characters mentioned below seemed to exp… -
Hi Yuri,
Please do not cross-post your questions. This question would be appropriate
to post only in the RAP newsgroup.
Which version of ReportBuilder are you using? If you have a datapipeline
connected to the dat… -
Hi Rob,
Sorry, I didn't not realize you were using RB 7.04. This issue was
addressed for RB 9. You will need to upgrade your version of ReportBuilder
to receive the fix.
--
Regards,
Nico Cizik
Hi Brian,
Try setting the Report.ShowAutoSearchDialog property to False.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors…Hi Priscila,
If you are getting an 'IEdiSeri' or 'IEdiCha' error message when you try to
compile a project that contains TeeChart functionality, then TeeChart is
probably installed correctly. In order to get around these error…Hi Isaac,
You need to add ppChrtUI to your uses clause to register the TeeChart editor
with ReportBuilder. See the article below on the registration of
components...
------------------------------------…Hi Alex,
The easiest way to do this would be to process this data prior to running
the report in SQL, however if you need to do this while the report is
running, you can use the AutoSearch feature of ReportBuilder to eitherHi Joe,
You can loop through every component in your report using a report object
loop. See the article below for more information about doing this.
----------------------------------------------
Tech Tip: Loop Thru…Hi Joe,
Try calling TppTextPipeline.Skip just before the first record is displayed
inside the OnFirst event of the pipeline.
--
Regards,
Nico Cizik
Digital Metaphors
in TppTextPipeline : Skip First Row Comment by nicocizik January 2005Hi Eduardo,
---------------------------------------------------------------
Tech Tip: How to Programmatically Load Reports that were Saved
using the Report Explorer
------------------------------------------------…Hi Tan,
I am unclear about what you are ultimately trying to accomplish. Why do you
need to destroy the TppReport object and create a new one? Why not simply
clear out the existing template and load a new one? Also, if you …Hi Damir,
I see... thanks for the suggestion
.
--
Regards,
Nico Cizik
Digital Metap…Hi Damir,
This example is included with every edition of ReportBuilder 9.01.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metap…Hi Tan,
Check out the demo located in the \RBuilder\Demos\5. AutoSearch\4. Custom
AutoSearch Dialog\... directory. This example shows how to create a custom
autosearch dialog, using a DateTimePicker.
--
Regar…Hi Branden,
If you are trying to manipulate the AutoSearch criteria in RAP, you will
need to create a passthru function that does so and call that from the
OnGetAutoSearchValues event. Not too long ago I created an example th…Hi Charley,
Sorry, I did not know you were interested in getting all the fields in the
table. You should be able to use the DataDictionary to get ahold of all of
these fields with their properties set correctly. See the Rep…Hi Charley,
Try using the DBPipeline.GetFieldNames routine to get the names of each
field in your dataset. If you need to get a hold of the actual field, you
can perhaps use the GetFieldForName method.
--
Reg…Hi Adrian,
Acutally, you're not too far off, it's almost that easy
. There is no
utility to convert you…Hi Hiram,
The new object inspector is attached to the Report Tree in the designer.
Simply select the View | Toolbars | Report Tree... from the main menu in the
designer to activate it. Then you can toggle the windows inside t…Hi Marcelo,
Why not set a flag of some sort when you do edit the SQL, then based on this
flag, either register the custom autosearch dialog or not?
--
Regards,
Nico Cizik
Digital Metaphors
Hi Andy,
------------------------------------------------------------------
Tech Tip: Subreport header/footer bands do not print for
Child type subreports.
---------------------------------------------------------…Hi Arnaud,
Yes
. All older templates are converted to the newer format the first
time they are loaded in a ne…Hi Alex,
Which database/connectivity are you using? For instance, if you are using
BDE, you may need to increase the MaxBlobSize field in order to work around
this error.
--
Regards,
Nico Cizik
Hi Al,
Check out Demo 92 (dm0092.pas) located in the \RBuilder\Demos\1. Reports\...
directory. You will need to remove the "x" from the front of the $DEFINE
directive at the top of the dmMain.pas file for this demo to work co…Hi Roman,
Many printers simply do not support or handle transparent objects very well.
ReportBuilder uses Windows API calls to assign transparency which in turn
controls your printer driver. In the past we have found that som…Hi Roman,
What type of printer are you using? Some printers do not handle transparent
objects very well. Be sure you are using the latest printer driver and
perhaps try printing to a different printer to see if you can get b…Hi Jonas,
You will need to assign the event yourself in code after the report object
is created. For instance...
lReport.DetailBand.OnBeforPrint := MyBeforePrintEvent;
--
Regards,
Nico CizikHi Jonas,
Take a look at the following example. This should get you on the right
track.
http://www.digital-metaphors.com/tips/Lau…