nicocizik
Comments
-
Hi David,
It appears you are using RAP. If so, you need to check the IsNull
routine rather than comparing to NULL.
Also your code is setting visible to True if the image is NULL. You
need to reverse this.
Hi David,
If you set the image to AutoSize, it will, by definition, re-size itself
to the original width and height when it is loaded from the DB.
If you need a fixed size image but would still like the band to shrink
This question has been answered via email. Please use one support
outlet for questions about ReportBuilder.
Below is my response.
---
Hi David,
Try installing TeeChart support manually using the inc…Hi Paul,
Thanks for the feedback. We will consider something like this for a
later release of ReportBuilder.
Hi Philip,
Which version of ReportBuilder and Delphi are you using?
I installed RBGridPack and tested with RB 15.01 and Delphi XE4. The
output to screen and PDF were both the same with the screen resolution
set to …Hi Stefano,
We have not heard of this issue before. The ReportBuilder installer
adds enteries to the following registry keys to update the Library Path
and load its packages. Check these registry keys after you install
Hi Gianni,
There are a couple reasons this could happen.
1. The security settings for both applications need to be the same. If
you are running Delphi in administrator mode and Outlook without, you
will run into is…Hi Paul,
When altering the global FormatSettings (DecimalSeparator for instance)
be sure to also update the ReportBuilder specific ppFormatSettings property.
uses
ppUtils;
...
FormatSettings.…Hi David,
Use the Report.AbsolutePageNo property to access the current page number.
Label.Caption := Report.AbsolutePageNo + 5;
Hi Bernhard,
The next minor release of RB 15 (15.02) will include Delphi XE5 support.
Hi Roberto,
Simply register the Indy email plugin by adding ppSMTPIndy10 to your
uses clause.
Once you do this you will also need to update the
EmailSettings.HostName, UserName, and Password properties to properly <…Hi Joe,
We have not seen this error before. A quick search of the error you are
getting on Google pulls up numerous issues related to DevExpress. As a
test, try removing DevExpress from your test project and see if you
Hello,
As a report grows (traverses data) it will automatically create new
pages as needed.
If you would like to manually add pages, you can use one of the options
below.
1. Section subreports: Create a …Which version of Delphi are you using? In my testing with RB 15.01 and
Delphi XE4, the F1 key is functioning correctly from the designer.
Are you trying to view the help from the run-time designer? If so you
need to define the help file using the TppDesigner.HelpFile property and
defile which type of help file you are using by adding the proper file
to your uses cla…Hi H,
I do not believe there is an easier way to go about this other than
placing the number of text components you need and updating their values
manually.
One option to make the updating easier, would be to create…Hi H,
The easiest way to display the current year would be to place a
TppSystemVariable inside your report and set its VarType to Date. Then
modify the DisplayFormat to 'yyyy'.
Hi Perry,
We have not seen this error before. What type of printer are they
printing to? Does this happen when printing to every network printer or
just a certain one? Does the terminal client have a default printer
d…You might try the AfterGroupBreak event but it may fire too early to
move the file. The OnEndJob will fire too early as well.
My suggestion would be to either rename them all an once when the report
has finished generating, o…Hi Sergio,
Take a look at the following articles.
http://www.digital-metaphors.com/rbWiki/Output/Email/How_To...Email_GroupsHi Mike,
There shouldn't be much you need to do to upgrade. All the changes we
made were added to the latest version of ReportBuilder so they will be
present when you upgrade.
If you are upgrading your version of I…Hi Mike,
You are likely speaking of GridPack. Unfortunately GridPack did not
support rotated text inside a crosstab either.
Thanks again for the feedback. We base most of our new features on user
feedback so it is…Hi Mike,
It is not possible to rotate text inside a crosstab. It is however
possible to add a rotated label to the new TableGrid component.
We will consider allowing rotated text inside a crosstab for a future
rele…Thanks for the feedback. We will consider it for a later release of the
product.
ReportBuilder uses a wrapper around the Delphi TRichEdit component.
Please see the following article on how richtext works in ReportBuilder.
If you would like advanced richtext features such as image embedding,
you will need…This question was answered in another post. Please do not double post.
Hi David,
PreviewFormSettings.PageBorder is only visible in the preview. When you
set the Visible Property to True, a border or shadow will be drawn
around each page inside the preview. This can be useful when the viewer
There is now a patch available for RB 15.01 Build 2 that solves this
issue. Please send a small email to support@digital-metaphors.com to
receive the patch.
Hi Adam,
1. GetPageFromCache expects a page number as its parameter. You are
starting with page 0 which does not exist. If you take a closer look at
the example, it uses Publisher.Pages[] property to access a 0-based pageHi Adam,
The solution I presented was a general one. It is not a built-in
feature of ReportBuilder.
The basic idea is to extract the page objects from each report and
compare the two. How you access the page objec…