nicocizik
Comments
-
Hi Uli,
This likely does mean that the thread generating pages is still busy.
When the report thread is complete, the Viewer.PrintStateChange event is
fired and the cursor is changed back to an arrow. The Viewer.Busy is
Hi Uli,
Yes, this is the correct event to use however, rather than use the
Scroll routine, first check for Viewer.Busy, if not, make the call to
LastPage.
if not(BefundViewer.Busy) then
BefundViewer.LastPage…Yes, using the Report.Parameters property.
Hi Kevin,
Do you want to save information to a DB when you save the template file
or do you want data saved actually inside the template file?
To save/load data from a DB with the template, take a look at the
follow…Report templates save the entire report definition including event
references. By loading a template you are essentially clearing out all
existing event references to the report object and replacing them with
the references saved …In my quick testing, the OnPrevewFormCreate event is firing correctly
and as designed.
Are you loading templates? If so, you need to be sure to assign this
event after the template is loaded.
Hi Uli,
No, syllable division is not currently a built-in feature of the RB text
components. You may be able to find a third party Delphi library that
does something like this but it sounds very advanced.
ReportBuilder uses the TFont object to handle fonts within reports and
the Size and Height properties of TFont are Integers. I believe this
makes half font sizes impossible using this object. There may be a way
to do this using t…Hi Bradley,
This is not a known issue. My first suggestion would be to upgrade your
version to 7.04 and re-test (contact info@digital-metaphors.com for
upgrade instructions). If this does not help, try downloading a trialThis is not a known issue. My suggestion would be to comment out all
event code and try again. If this fixes the dissapearing component
issue, periodically begin adding the event code back to isolate the
problem. You can also se…I just performed a simple test using the events you mention below and a
TppVariable in the detail band was not reset each time the data
traversed. Are you certain you do not have your Variable.ResetType set
to veTraversal?
Hi Trevor,
Which version of ReportBuilder are you using? Are you using a
registered copy of ReportBuilder or a product with ReportBuilder built-in?
ReportBuilder contains built-in support for TeeChart charts within
Hi David,
The Label component only supports plain text. You could possibly use a
small TppRichText component in its place to load your RTF text.
Hi Christian,
Unfortunately we have not heard of anything like this before.
The DocumentProperties routine is part of the Windows API and is
functioning correctly as far as we can tell. The issue is likely
elsewher…Hi David,
Unfortunately unless we are able to recreate this problem here on our
machines, there is little chance we will be able to track it down.
My suggestion would be to try to simplify your application's print
p…Hi David,
This is not a known issue nor am I able to recreate it with a simple
test on my 64 bit machine.
Which version of ReportBuilder and Delphi are you using? Does this
occur with every printer you select the P…Hi Mauro,
ReportBuilder is not going to know what "{programfiles}" represents and
will try to access that as a file location directly.
Try using the DBText.OnGetPicture event to get the file location and
load it int…If you remove the barcode, do you still get the error? To recreate the
error, you would likely have to run the application in a terminal
service like your customer. The likely culprit is a loss of or
inability to access proper re…Hi Will,
Thanks for the info.
We are constantly working to remove the need of a printer to export to
file. I would be interested in knowing which report component being
exported to PDF and/or which code is causing …Hi Jaime,
ReportBuilder does not currently support the native creating of QR Code
barcodes. Most of our other customers that need QR Code support inside
reports use the PSOFT library which I believe provide an RB component to…Hi Steve,
From Delphi, this is definitely possible. You can have as many DB
connections and pipelines on a form as needed and the report will access
them as needed.
From DADE, it is also "possible" however not ex…Hi Philip,
Does this occur with the normal ArchiveReader as well? If you comment
out all your code below, do you still get this behavior?
As a test, try commenting out all event code and see if you still get
this p…This is not a known issue. Please send a simple example demonstrating
this error to support@digital-metaphors.com in .zip format and I'll take
a look at it for you.
Hi Breck,
Rather than using the CreateAutoSearchCriteria, try using the
CreateAutoSearchField. This allows you to define a field alias and
should resolve to identical field names but different field aliases.
Hi Uli,
You can use the PrinterSetup.DeviceSettings to access the built-in
settings of a printer.
If you would like to print with duplex, you can use the
PrinterSetup.Duplex property.
Hi Lukasz,
Try placing the photo and description in both positions (overlapping)
inside the detail band. Then based on which detail band you are
printing toggle the visibility of the two you do not want to see. The
Deta…Hi Carolyn,
There is a patch available for RB 14.04 that solves this issue. Please
send an email to support@digital-metaphors.com to receive the patch.
Hi Mikkel,
We have not seen this behavior before.
Is there a type of report that causes this error? Perhaps only reports
with Subreports present? Are you able to recreate this on your machine?
Hi Mikkel,
http://www.digital-metaphors.com/rbWiki/Output/Email/How_To...Email_HTML_message_with_inline_imagesHi Rene,
Yes it is possible to load templates into subreports.
Subreport.Report.Template.FileName := '';
Subreport.Report.Template.LoadFromFile;