nicocizik
Comments
-
Hi Eric,
If you would like to save a .rtm file in a more readable format, you can
set the Template.Format property to save the file as ASCII text.
If you would like to extract RAP code from a report, take a look at theHi Perry,
Rather than calling Report.Print, try calling Viewer.Print. This is
what is called when the standard print button is selected and should
give you the same behavior.
Hi Trevor,
My first suggestion is to upgrade your version of ReportBuilder to the
latest (14.08). Contact info@digital-metaphors.com for upgrade
instructions.
Which email plugin are you using to send these emails? …Hi Adam,
Thanks for the feedback. Currently you can use anchored Shapes or Lines
to achieve a band border effect. Adding this as a simple property would
definitely be useful. I will add this to our list of possible
en…Hi Gerard,
This is not a known issue. My first suggestion would be to comment out
all the event code associated with this report and see if all the
details display. If so, then try periodically adding the code back to
…Hi Alex,
This topic has been discussed before. Please perform a search of this
newsgroup for "FireMonkey" to find more information.
What we would like from our users is their feedback about using FireMonkey.
Hi Christoph,
Your code looks fine however you are just creating a TppDrawCommand
component which is the descendent to all drawcommands. It does not have
all the information needed to draw and image.
You will want …Hi Christoph,
I'm a bit unclear about what you are trying to accomplish. All of the
text components in ReportBuilder descend from the TppCustomText class
(TppLabel, TppDBText, etc.). When a report is generated, each componen…Hi Kai,
I highly suggest you spend some time going over the Developer's Guide
included with ReportBuilder and working through the tutorials included.
This will give you an idea about how ReportBuilder functions and what
Hi Kai,
Perhaps I'm misunderstanding the issue.
By default, when an email address or hyperlink is recognized as the
caption of a label, it is automatically converted to a clickable item
when the report is previewed.…Hi Kai,
Set the HyperlinkEnabled property to False.
Hi Jure,
The post from 2006 is applying to a different topic (printing to the
preview and PDF at the same time). When creating your own device, you
will want to call PrintToDevices rather than Print.
Sorry if I was unclear. I meant that you will need to mimic the code in
Viewer.Print inside your own button click event.
The code you have below is fine but you are not disconnecting the
ScreenDevice before making the call to…Hi Jure,
When printing from the preview, you need to do something similar to the
Viewer.Print method. This is the routine that gets called when the
Print button is clicked.
The main item you need to take from this …Hi Eliseu,
See the following article on standard header and footers.
http://www.digital-metaphors.com/rbWiki/Design/…Hi Eliseu,
Section subreports act as completely separate reports so there is no way
to have a single header for all pages. One option is to place a Child
subreport in the header of each Section, then load a standard template …Hi Eliseu,
This type of report can be created with a number of Section style
subreports.
1. Create a new report with a detail band only. This will be your main
report.
2. Add a section style subreport f…Hi Pedro,
ReportBuilder only has the ability to create PDF files, not view/print
them. This is the job of a PDF viewer such as Acrobat or Adobe Reader.
It may be possible to use the PDF ActiveX control included with Delp…Excellent! Glad you got it sorted.
Hi Rich,
Are you certain each subreport is connected to the proper dataset?
ReportBuilder will traverse the data it is given so if there are no
detail records for a given master, nothing will print.
Please send the …Hi Bora,
ReportBuilder uses the Delphi Format routines to apply a display format
(see the ppDisplayFormat.pas file).
In Delphi if you would like the effect you describe below, you would
apply a format string similar…There is now a patch available for RB 14.08 that solves this issue.
Send an email to support@digital-metaphors.com to receive the patch.
Hi Bora,
Please send the simple demo to support@digital-metaphors.com in .zipf
format and I'll take a look at it for you.
Hi Jeff,
There is not automatic way to shrink a font to fit in a give space. You
could do this manually by measuring the text before it is printed to be
sure it fits in the allotted space.
The TCanvas.TextWidth rou…Hi Ailton,
You can use the Orientation property of a Barcode to change the
direction it is drawn.
This is not supported for 2D Barcodes however. In this case, you can
change your entire report page orientation to L…Hi Ailton,
You can use the Angle property of any single-line text component to
change the orientation.
Hi Howard,
1. Depending on how your application is designed, you could simply
assign the Caption property of a couple labels in your report directly
in Delphi before the report is printed.
ppLabel1.Caption := EditFr…Hi Sam,
You can access SQLText using the TdaSQL object. The easiest way to gain
access to the TdaSQL object is by using the TdaSQLBuilder wrapper object.
lSQLBuilder := TdaSQLBuilder.Create(Report);
lSQL := lSQLBuil…Hi Chris,
Are you using RB 14.08? If so, try previewing from the default
previewer and see if that helps.
Another item to try is setting PreviewFormSettings.SinglePageOnly to
True. This property can also be set fo…