nicocizik
Comments
-
Hi Philip,
The LIKE keyword is a function of your database. If you need it to be
case insensitive, you can see if your DB supports the UpperCase or
LowerCase functionality. In SQL Server the function is UPPER() or LOWER().Hi Arturo,
My first recommendation would be to upgrade to the latest version of RB
11 (11.08) and re-test your application. Contact
info@digital-metaphors.com with your serial number to obtain the update.
If this …Arturo,
Which version of ReportBuilder and Delphi are you using? Which version
did you upgrade from?
Does this occur with every report or just certain reports?
Hi Chau Chee Yang,
We are researching this issue. ReportBuilder 14 relies on the Delphi
object streaming architecture to cache and load pages to be displayed in
the previewer. In my testing, the issue does not occur for Delp…Hi Mark,
Once you remove a Report component from a region/band, it is not
actually freed and is still owned by the main form/datamodule. The
issue is likely being randomly caused by the old report components still
"hang…In my testing with RB 12.05 Build 251, the EmailGroupsDemo example
functions correctly. I receive three different emails with the correct
group information.
As a test, try sending each email to the same address and see if tha…Hi Jeff,
Try directly adding a draw command to the page if the Memo.Overflow (or
Subreport.Overflow) property is True. This will need to be checked in
the DetailBand.AfterPrint event. Something like the following (rough code…Hi Michael,
Looking at the ReceivePage code for TppDevice and TppPrinterDevice, you
are going to want to make sure this is not a message page. Try setting
Page.Final to True. Also give the page an AbsolutePageNo and assign i…Hi Michael,
Since you seem to be manually sending pages to the device, you could
create an empty page object with the same PrinterSetup as the other
pages in your report and receive it before entering the loop below.
Hi Jon,
This was not an known issue with RB 11.08. Which components are you
using to calculate the running total (DBCalc, Variable)? Are you able
tor recreate this behavior with a simple example I could run here? If
s…Hi Roman,
Try setting the PrinterSetup.SaveDeviceSettings property to True and see
if that gives the correct result.
I also recommend upgrading to RB 14.07 so you have the latest version to
work with.
Hi Filip,
This is a known issue regarding shapes and lines. The issue is that the
Windows API draws these items differently. Lines draw at the actual
left position, whereas shapes are started at the center position and
Hi Rod,
You could use the OnPrint event of a component to determine which page
it is being printed by checking the Report.AbsolutePageNo property.
It however could be tricky to get the timing right to actually toggle
Hi Oliver,
This is possible, however you would not want to do this from an OnEmail
event. Setting up the email plugin to use should be done as an
initialization step before printing a report. Registering a new email
pl…Hi Oliver,
Yes, by adding a direct-connection plugin to your uses clause, your app
will use that instead of the default MAPI plugin.
Steps...
1. Add ppSMTPIndy10 to your uses clause.
2. Set the EmailSettin…Hi Roman,
Thanks for the feedback. I will add these functions to our list of
possible additions to RAP for a later release.
Currently you will need to create a passthru function to obtain this
functionality.
<…Hi Jeff,
You can disable the auto hyperlink formatting by setting the
HyperLinkEnabled property to False.
Hi Andrei,
This issue was addressed for later versions of ReportBuilder. Please
update your version to RB 12.05.
Contact info@digital-metaphors.com with your serial number and
purchasing email address for upgrade i…Hi Ed,
Rather than accessing the Report.PrinterSetup, try accessing the
Report.Engine.Page.PrinterSetup.
This may however be a printer specific behavior. ReportBuilder handles
duplexing similar to the other printer…Hi Ed,
Try altering the Duplex property inside the OnStartPage of the report.
procedure TForm1.ppReport1StartPage(Sender: TObject);
begin
if ppReport1.AbsolutePageNo = 5 then
ppReport1.Engine.Page.Printer…Hi Peter,
ReportBuilder does not support superscript text. You can use a
repositioned label with a smaller font in order to achieve a similar effect.
Documentation for the HTML device can be found in the TppHTMLDeviceHi Craig,
There is no automatic way to print to the front and back of a sheet of
labels. Assuming you have a duplex printer, you could possibly
manipulate where each card data is printed in a horizontal duplex. This
ma…Hi Diego,
Are you able to properly scan the barcode from the preview or by
directly printing the report? The barcode in PDF should look identical
to the RB preview/print.
Please send a simple example application of…Hi Diego,
Which version of ReportBuilder are you using? Are you using the barcode
component included with ReportBuilder or are you exporting an image of a
barcode?
Barcodes in ReportBuilder are not exported as imag…Hi Radu,
Which regional locale do you have your machine set to?
Please send an simple example of this to support@digital-metaphors.com
in .zip format and I'll take a look at it.
Hi Santy,
FormatFloat uses what is known as "Banker's Rounding" which rounds to
the nearest even number if half way between two numbers. Using Banker's
Rounding, 15.225 would round to 15.22 and Delphi is correct.
I…Hi Luis,
When you make a call to FormatFloat from RAP, ReportBuilder simply calls
the Delphi FormatFloat routine and retrieves the value. In my testing,
the following code returns 15.22 in RAP and Delphi.
var
…Hi Norbert,
The PageBreak component is generally meant to be used on single page
non-data aware bands or reports.
If you would like each record to have its own page, I suggest creating a
group on that record and set…Hi Jeff,
Please upgrade to RB 11.08 and retest. We may have fixed some issues
with TextFile export. Contact info@digital-metaphors.com with your
serial number for upgrade instructions. If after upgrading you still
get…