nicocizik
Comments
-
Hi Heinz,
I'm a bit unclear about what you are trying to accomplish. Are you creating
archive files or printing from an archive file that has already be saved?
If you are creating archive files, are you trying to export a cop… -
Hi Lars,
Unfortunately we do not know of any other third party components that
support PDF/A. You may still be able to create PDF files using the PDF/A
specifications using a third party component such as Gnostice however the… -
Hi Lars,
The built-in PDF device in ReportBuilder does not currently support the
PDF/a standard. I believe the thrid prarty plugin Gnostice officially
supports exporting PDF file with this standard. We will consider adding <… -
Sorry, I meant to say RB 10.07 is not interface compatible.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
-
Hi Carlos,
RB 10.07 is not interface specific. You will need to recompile and
reinstall all third party packages. Also compiling your applications with
the ExtraDevices source (or RB source) in your library path should solve… -
Hi Ralf,
This is not a known issue with ReportBuilder. Are you able to recreate this
issue with a minimal report? (i.e. empty report with a label on in) Try
commenting out all your event code and re-print the report. If th… -
Hi Anne,
You might try contacting Pragnaan support to see if this is a known issue.
Have you considered using the built-in PDF device included with
ReportBuilder 9 or greater?
--
Regards,
Nico Cizik… -
Hi Anne,
ExportToPDF is a Pragnaan routine however it must make a call to
Report.Print, which in turn tries to create and assign the device before
printing. Be sure you are not manually creating a PDF device and assigning
Hi Sergey,
ReportBuilder does not have a built-in way to export reports to XML. This
is a capability we are considering adding to a later release. Currently you
will need to use a third party utility to do so...
<…Hi David,
Although Waler support frequently views this newsgroup, you might try
contacting them directly (via email) for a quicker response.
support@waler.com
--
Regards,
Nico Cizik
Digita…Take a look at demo 109 located in the \RBuilder\Demos\1. Reports\...
directory for an exmaple of saving PDF output to a stream.
--
Regards,
Nico Cizik
Digital Metaphors
in Saving PDF to a Stream Comment by nicocizik October 2007Roberto,
Try setting the Report.PrinterSetup.Duplex property to dpHorizontal or
dbVertical to enable duplexing.
--
Regards,
Nico Cizik
Digital Metaphors
in Printing on both sides of paper Comment by nicocizik October 2007Hi Martin,
Take a look at the following example on preventing an orphan summary in
ReportBuilder. This should get you on the right track to keeping your
summary bands from ever displaying alone on the last page of your report…Hi Carl,
Are you able to recreate this behavior if you print directly from your
machine (your printer, your printer driver)? Have your customer try
printing to a different printer and see if they get the same effect.
Hi Peter,
You can easily unregister any built-in devices using the ppUnregisterDevice
routine.
uses
ppFilDev, ppDevice;
ppUnRegisterDevice(TppTextFileDevice);
--
Regards,
Nico…Hi Ye,
Unfortunately in order to see these fonts correctly, the PDF device will
need to embed them into the PDF document. This is a feature that is not
currently implemented for ReportBuilder however we plan to add it to the …Hi,
Which version of ReportBuilder and Delphi are you using? Are you using the
built-in PDF device included with RB or a third party export device? Which
specific characters are giving the problem?
--
Regard…Hi Philip,
I tried your code below with a simple report containing a single image and
could not recreate the error. If possible, please send a small example I
can run on my machine that recreates the problem and I'll try to r…Hi Eugenio,
Most problems dealing with a terminal service such as Citrix deal with user
access. You need to be sure you have complete access to all the printer
drivers available. ReportBuilder constructs a list of available …Jonathan,
Please do not post attachments to these newsgroups. See the newsgroup
guidelines at the following address.
http://www.digital-me…Hi Roger,
We have not seen this behavior before and we use network printers
exclusively. You're correct, the DB and connectivity probably does not have
anything to do with this issue. Have you tried printing to a different <…Hi Roger,
We have not seen this issue before. Which version of ReportBuilder are you
using? Are you able to recreate it with other network printers or just the
one in question? Once the report finally prints, does it hang a…Hi Mojoala,
For a quicker response about an item with a third party export device, it is
usually better to contact them directly via their support email. Sometimes
others on this newsgroups can provide assistance however it i…Hi Halim,
Depending on which export device you are using to export to a JPG file, you
might want to contact them directly to see if this is possible.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Sven,
Yes, please send the PDF to support@digital-metaphors.com with the
PDFSettings.Compression property set to clNone and I'll take a look at them
for you.
--
Regards,
Nico Cizik
Digital M…Hi Sven,
Sorry for the delay in this response, I somehow lost track of this thread.
I did a test on a machine with no printers installed and was able to
successfully export a report with stretchable regions to PDF without…Hi Sven,
How does the output stream differ when you create it with your server app?
Are you still getting a valid PDF file? If you save the PDF to file before
sending it over the server, is it already corrupt?
-- <…Hi Christian,
1. Copies are not supported with the built-in PDF device. You will need to
create a loop that calls Report.Print for each copy you would like to
create.
2. This is a limitation of using advanced com…Hi Bernard,
Calculations inside a report should primarilly be made in the OnCalc event
of a TppVariable. If you must make a calculation elsewhere, you will need
to take into account that the event may fire more than once. Th…