nicocizik
Comments
-
Hi Stefano,
Sorry, I misread your initial post.
In this case you will need to do something like the following...
in Help on watermark Comment by nicocizik April 2009 -
Stefano,
Try placing the image in the Page Style band. This by definition will print
behide all other report components.
Activate the Page Style band using the Report menu in the designer.
--
Regards,
Hi Arno,
Try using a DBImage instead connected to a pipeline. This will
automatically load the image from the dataset.
Otherwise you could stream the image data and load it into the
TppImage.Picture.Graphic object …Hi Mangus,
Take a look at the following article on how to troubleshoot endless pages.
This typically has something to do with spacing issues (margins or page
boundaries).
in Problem with a report that never stops printing Comment by nicocizik April 2009Hi Fellipe,
The default email plugin in MAPI. Different email plugins can be registered
by adding the file to the uses clause or registering them manually.
in Email function in report builder Comment by nicocizik April 2009Hi Vincent,
When using the default (MAPI) email plugin, ReportBuilder will attempt to
automatically connect to your machine's default email client (Outlook for
example) and send the mail message. In this case, the Password an…Diego,
Please upgrade your version of ReportBuilder to 11.04. We made some changes
that could fix the issue.
For upgrade instructions, contact info@digital-metaphors.com with your
serial number and purchasing email…Hi Jeff,
If the report engine runs out of space, it will by definition break to a new
page. You can try adjusting the NewPageThreshold of the group if you are
using one or changing which band the final component is in.
<…Hi Stef,
Once you create a new button, the only way to access it from the report is
by using the TppPrintPreview.Toolbar property.
TppPrintPreview(ppReport1.PreviewForm).Toolbar.Items[0].Visible := False;
--Hi Stef,
The following article should get you started in the right direction.
http://www.digital-metaphors.com…Hi Fillipe,
I'm a bit unclear about where you would like the rectangle to extend to.
One option is to place the rectangle inside the PageStyle band which will
print behind all report components for each page. Activate the Pag…Hi Ray,
This is fundamental to the way pipelines are designed to work. When a
pipeline is accessed, a list is created with all pipelines on any
forms/datamodules in the project and the first match is taken and used.
Hi Richard,
RAP definitely makes things much easier when using the report explorer and
assigning event handlers.
If you have created an event handler in Delphi code, you can assign it to a
report being loaded using …Hi Adam,
Ok, this case is a bit different. For a DBMemo, the lines are not retrieved
from the DB until after the shape is created. The same concept applies for
your example where you are only adding a single line and letting…Hi Adam,
Thanks for the example. You are correct in that regions are not a good
solution for this case.
Try using the OnDrawCommandCreate event of the shape to calculate the height
of the memo and adjust its size a…Hi Adam,
Depending on the type of shape you are using, you could possible place your
memo inside a region component set to stretch and anchor the memo to the
bottom, keeping the spacing correct. A region is essentially a stre…Hi Richard,
There is now a patch that addresses this behavior for RB 11.04. Send a
small email to support@digital-metaphors.com requesting the patch and we'll
send it to you asap.
--
Regards,
Nico …Hi Erich,
Make sure MyChkBox and MyChkBoxDesign are in your uses clause.
http://www.digital-metaphors.com/rbWiki/…Hi Lane,
ReportBuilder does not natively support the .png image format (nor does
Delphi). You must be using a third party TGraphic descendent such as
TPNGImage or GraphicEx. Take a look at the following article on how to add…Hi Colin,
Sorry I may have misled you a bit. I meant to say "starting" with RB 9, the
PageBreak component was included.
ReportBuilder 11 is the current version and also includes the PageBreak
component. ReportBuil…Hi Colin,
Is this report connected to a dataset of some sort or are you entering the
data manually? By design, the pagination in ReportBuilder is data driven
meaning a new detail band is generated for each record in a connect…Hi Jeremy,
First try upgrading to RB 11.04 and be sure your user is using the latest
version of the printer driver available.
What about this specific report is different from other reports that print
without errors…Hi Mike,
By "using your real name" I meant in the "From" field when you post (instead
of your email address).
You may have a corrupt installation. Please follow the steps in the article
below on cleaning a corrupt …Hello,
For future reference, please use your real name when posting to these
newsgroups.
The error usually indicates that the "xxxxx.dcu" file mentioned in the error
is read only. Check the file(s) shown and be sur…Hi Arno,
The MAPI plugin calls standard MAPI commands to send an email using a
compatible client. It is the job of the client (Lotus Notes 7, Outlook,
etc) to interpret these commands correctly and perform the task given.
Hi Mike,
Thanks, let me know if you are able to build the demos.
As a test, try temporarily unregistering some of the third party components
you have installed and remove them from your library to see if that is
inf…Hi Mike,
Once again, please change the "from" field from your email address to your
real name.
rbserv10.exe implies ReportBuilder Server for Delphi 10 (2006).
Which version of ReportBuilder did you upgrade from…Hi Rodger,
If you would like, you can try sending me the preview plugin you are
creating and I can take a look at it for you. Send it in .zip format to
support@digital-metaphors.com.
--
Regards,
Ni…Hi Rodger
If you trace into the BeforePreview routine, where does the AV occur in the
RBuilder code? Is the Report perhaps nil?
--
Regards,
Nico Cizik
Digital Metaphors
in Customizing the Print Preview Comment by nicocizik April 2009Hi Rodger,
1. In order to add a button in the middle of the other preview toolbar
buttons, you will need to completely recreate the entire toolbar. Take a
look at the CreateToolBarItems routine for how it is currently create…