nicocizik
Comments
-
Hi Steve,
When assigning the PrinterName, it is best to use the
PrinterSetup.PrinterNames property to do so. This way you can be
absolutely sure you are assigning a valid name (which needs to be exact).
Try somethi… -
Hi Jeroen,
There is now a patch available that fixes the parenthesis issue. Send
an email to support@ to receive the patch.
In my quick testing, viewing the properties of a PDF created with RB in
Adobe Reader X, th… -
Hi Ralf,
For this case you will want to set the Viewer.SinglePageOnly property to
True. This will use the original TppScreenDevice that you were
accustomed to in RB 12.
Also, have you considered taking a look at th… -
Hi Andreas,
Which version of ReportBuilder and Delphi are you using? Are you
exporting to PDF using the built-in PDF export included with RB or a
separate PDF driver?
-
Hi Carlos,
The example simply shows how you the developer would replace the printer
dialog (or any RB dialog) with your own completely custom dialog. Once
you register your own printer dialog, you then have complete control <… -
Hi Carlos,
Thanks for the feedback. We base most of our features and enhancements
on customer feedback and I will add your request to our possible
enhancements list.
Which settings would you like available from the… -
Hi Eliseu,
It is definitely possible to create a TppReport descendent that is
tailored to your needs. You mentioned that "PrintToScreen" does not
allow specialization (because it is private in TppProducer). If you
need… -
Hi Eliseu,
I'm a bit unclear about your requirements. Do you need to view the same
report with different parameters at the same time or in sequential order?
If you need to view the same report in separate MDI windows of … -
Hi Ralf,
I will take a look at the PDF files however unfortunately the files
alone will not give me very much information about what is happening.
Even small reports can have hundreds or even thousands of PDF objects in
… -
Hi Ralf,
We have not seen this behavior before. Please send an example
application that creates a PDF with errors for Acrobat 9.x and I'll run
some tests here with both versions. Send the example in .zip format to
supp… -
Hi Stefan,
There is a patch available that solves this issue. Send an email to
support@digital-metaphors.com to receive the patch.
-
Hi Igor,
Please send an example of this to support@digital-metaphors.com in .zip
format. For future reference, please send all examples to this address
rather than post them to the newsgroups.
-
Hi Phil,
I do not see anywhere in the loop that you are setting
ThisPDFDevice.EndPrintJob to True. It is necessary to set this to True
to finalize and create a separate file.
You may need another case where you loo… -
Hi Michael,
Is the text component in your report a RichText?
If you preview this report to screen with separate default printers, do
the reports appear the same?
For RB 15, the PDF device no longer relies on th… -
Hi Marius,
The OnGetFileSuffix event fires too late to alter the first password.
By this time the report is already generating.
One solution would be to update the initial password before the report
prints, then re-… -
Hi Ralf,
A DBMemo should never be exported as an image using the built-in PDF
device. Are you certain this is a DBMemo and not a DBRichText?
If you would like you can send an example of this I can run on my
machine… -
Hi John,
Form based PDF or "FDF" is currently not supported by the built-in PDF
device. This is something we will consider adding for a later release
of the product. Currently you would need to export the report and use aHi Chantal,
If you are using the BackgroundPrinting feature you can implement the
OnThreadTerminated event of the BackgroundPrintManager to know when the
report has finished printing.
uses
ppUtils, ppBackgro…Hi Paola,
If you are using RB 14 or later, you can export your report using the
DocForm device to export tables to a .DOC file. See the TppDocFormDevice
topic in the RB help for more information.
Please provide more information about your current setup and how the RTF
output does not meet your needs.
Which version of ReportBuilder and Delphi are you using?
Are you using the RTF device with text boxes? Starting wi…Hi Lee,
Open the ppPrvDlg.pas file and take a look at the TppPrintPreview class.
This is the preview dialog that is shown when you call Report.Print
with the devicetype as Screen.
In the public section you will se…Hi Mauro,
Use the OnFileDeviceCreate event.
procedure ReportOnFileDeviceCreate;
begin
if Report.FileDevice is TppXLSDataDevice then
ShowMessage('XLS Device');
end;
Hi Mauro,
RichText is not supported for XLSData or Text export. You can currently
use the XLSReport format to export RichText components to XLS.
Another option may be to place a memo component behind the RichText
c…Hi Jason,
Try setting the TppXLSSettings.IgnorePageHeight property to True. This
prevents extra rows from being added to the bottom of the page to more
closely represent the page height.
Hi Nicos,
This property was added for a later version of ReportBuilder. Moving
forward we hope you will consider upgrading to the latest version to
take advantage of this and many other new features.
in Access to IdMessage in TppReport when sending mails Comment by nicocizik January 2014Hi Nicos,
You can access the TIdMessage object using the IndyMessage property.
lIdMessage := TppSMTPIndy(lEmail.SMTP).IndyMessage;
Hi Paul,
TRichView uses its own custom drawcommand to handle rendering which we
do not have access to.
The best way to track down TRichView issues is to create a simple demo
for the TRichView support team and send i…Hi Julien,
I tried a simple email app on our Windows Server installation and it
functioned correctly.
If this issue is also occurring with other applications such as
PDFCreator as you mentioned in your earlier post,…Hi Julien,
Checking on-line, it appears the most common reason for this error is
that there is no default email client defined for the machine. Be sure
a (MAPI compatible) client is installed on your server machines and that …Hi David,
Thanks for the clarification. Unfortunately it is not currently
possible to export a report to multiple sheets inside the same XLS document.
This is a feature we will consider researching and possibly adding fo…