nicocizik
Comments
-
Hi Martin,
It is possible to individually highlight a given cell in a crosstab using
the OnFormatCell event. Take a look at demo 126 located in the
\RBuilder\Demos\2. CrossTabs\... directory for an example of this.
Hi Richard,
1. Be sure the report is connected to the proper datapipeline. You can do
this at runtime after the template has loaded in the Template.OnLoadEnd
event...
Report.Datapipeline := myDataPipeline;
Hi Davor,
I just checked the install scripts and before it installs it checks the
version of the \CodeGear\RAD Studio\5.0\bin\bds.exe file. If this version
is 11.0.2804.9245 (same as you have below) or greater, the installati…Hi Bora,
You can unregister any device before printing the report using the following
code or similar...
uses
ppDevice;
ppUnRegisterDevice(TppPDFDevice);
--
Regards,
Nico Cizi…Hi Klaus,
You can access the buttons directly from the report object or create a
custom preview as you did in RB 6.
Accessing the buttons from the report...
uses
ppPrvDlg;
procedure TForm1.ppR…Hi Willie,
Yes, I was more wondering if you had a different label printer to test with.
Be sure you are using the latest printer driver for the Brother printer.
You might also take a look at the provided driver software option…Hi Willie,
Which version of ReportBuilder are you using? Are you able to get this (or
any) report to successfully print copies to a different printer?
--
Regards,
Nico Cizik
Digital Metaphors
<…Hi Willie,
Before moving forward with the copy loop, you might try letting the printer
handle the copies. Try setting the DelegateCopies property to True before
you print the report and see if that allows you to print multipl…Hi Deck,
Yes, you will most likely need to add some TeeChart units to your uses
clause to access these new charts at runtime. This is however a matter of
looking at the TeeChart files and figuring out which ones register the …Hi Jeff,
This should be possible in RAP however it may be necessary to create a
pass-thru function to allow some of the functionality. For instance,
getting access to the Report.Engine and PrinterSetup.PageDef properties may …Hi Jeff,
Take a look at the following example of adding lines to the end of the
detail band to fill the rest of a page.
http://www.digit…Hi Jeremy,
Please contact info@digital-metaphors.com with your serial number and
purchasing email address for update instructions.
--
Regards,
Nico Cizik
Digital Metaphors
in version 7.0 -- is it possible to get the latest minor version? Comment by nicocizik January 2008Hi Samuel,
You only need to distribute the language .dll files if you want to allow
your customers to switch between languages from your application. If you
build you application with the Lauguage property set to PTB, you do …Samuel,
Please do not post attachments to these newsgroups.
Looking at your log output, it seems you are trying to compile the .rc
files. You need to use the Borland Resource Compiler (brc32.exe) to
generate the .r…Hi Samuel,
This error indicates that your .rc file is corrupt. Did you create this
file using the ReportBuilder Language Application?
--
Regards,
Nico Cizik
Digital Metaphors
in Error E2029 in CreateResFromRc.Bat Comment by nicocizik February 2008Hi Ebo,
Are you using the built-in TextFileDevice include with ReportBuilder to
create these .csv files?
The Title band by definition will only print once at the beginning of the
report. Are you certain these label…Hi John,
Yes, subreports are a stretchable component and behave a bit differently
than standard report components. In order to control the position that a
subreport prints you need to set it to print relative to another stret…Hi John,
Take a look at the report tree by selecting it from the View | Toolbars...
option in the main menu of the designer. This will give you the z-order of
the components created in your report. The z-order defines which …Hi Richard,
Delays in viewing/printing a report are usually caused by the speed of your
database or network. ReportBuilder cannot display any information until it
receives it from your DB and that can take time in some cases.…Hi Stephan,
The OnStartPage event fires between every page printed (copy or not). You
should be able to use this event to define which bin each piece of paper
comes from. As I mentioned in my previous post, you will need to …Hi Stephan,
Take a look at the article below. This shows how to print each page from a
different bin. In your case you may need to create a separate field to keep
track of which copy is being printed.
------------…Hi Leon,
You can try setting the Report.PDFSettings.ScaleImages property to False
however I believe that will increase the file size to the same as what
TExtraDevice produces. If this will not work, you may need to alter the …Hi Paul,
There is currently a patch for this bug available. Please send a small
email to support@digital-metaphors.com requesting the patch and we'll send
it to you asap.
--
Regards,
Nico Cizik
Hi Fred,
Thanks for the clarification.
When using Variables, you need to perform all calculations/manipulation
inside the OnCalc event. If you would like to initialize the value, you can
do so with a separate field…If you are not using RAP, you should have direct access to all the report
components from Delphi. If you need to access the value or assing the value
of a given TppVariable, just use the variable's name...
ppVariable1.Value :…Hi Fred,
Are you using RAP (Calc tab)? If so, for future reference, please either
post your question in the RAP newsgroup or tell us you are using this
feature before asking your question.
For RAP, you will need to…Hi Annette,
There are no events to actually alter the individual merge values at runtime
however you can use the OnMailMerge event of the TppRichText component to
alter the entire RichText after the values have been merged. I…Hi Anderson,
We do not have any examples of this however it should not be too difficult
to descend from the TppReport object. Since you are creating a simpler
version of the report object, you might try descending from theHi Ismar,
I would suggest working through the tutorials in the Learning To RAP
application from our website. Depending on which version of RB you have
embedded in your app, you may be able to use the SQLBuilder object to hand…