nicocizik
Comments
-
Hi Weverton,
Usually when the output is different on screen than it is on paper, it is
due to some event code that is firing for one device and not another. Try
commenting out your event code and see if you are able to get th… -
Hi Karen,
This error indicates that somewhere in your report the PrintPosition
property of a band is set outside the printable area of the page. Take a
look at the PrintPosition of each band in your report and be sure it lies… -
Hi Bora,
Sorry for the delay, somehow I lost track of your post. Creating your own
crosstab renderer is an option but not a recommended one as the current
crosstab is very intricately designed and not very customizable. I wo… -
Hi Bora,
Unfortunately the captions in the crosstab are not rotatable. Thank you for
the suggestion.
--
Regards,
Nico Cizik
Digital Metaphors
in Rotate Column headers in crosstab Comment by nicocizik November 2005 -
Hi Bhoj,
ReportBuilder 9.0x includes a TppPageBreak component on the advanced
components toolbar in the designer. Placing this component anywhere on a
report will automatically cause the page to break at that point.
Hi Mike,
Be sure the KeepTogether properties of the groups are set to False. Also be
sure you are not using any other objects such as TppRegions or Subreports
with their KeepTogether property set incorrectly. Setting this to…Hi Ron,
Have you successfully installed the ReportBuilder InfoPower support? If
not, take a look at the ReadMe.doc located in the \RBuilder\InfoPower\...
directory for instructions. We are not currently aware of any issues w…Hi Juan,
If you are getting an 'IEdiSeri' or 'IEdiCha' error message when you try to
compile a project that contains TeeChart functionality, then TeeChart is
probably installed correctly. In order to get around these error me…Thanks for your interest in RB for .NET.
Digital Metaphors is currently working on RB for .NET. The project is being
approached in phases. The first phase will have the ability to preview and
print reports in .NET, while relyi…Hi Jack,
Below is the list of enhancements to RB 9 when it was first introduced.
These are the main enhancements although many bug fixes have been made since
then. Take a look at the Release.doc file located in your \RBuilder…Hi Eric,
Yes, you can toggle the visibility of the TppPageBreak component to give
your users the option to break to a new page or not.
ppPageBreak.Visible := False;
--
Regards,
Nico Cizik
…Hi Adam,
All good suggestions. Thanks for your feedback.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
<…Hi Adam,
Scratch that last post
. After thinking about it for a little while
longer I found that it was p…Hi Adam,
Sorry about not keeping you updated. Due to the nature of the fix, this
will be addressed for the next release of ReportBuilder.
--
Regards,
Nico Cizik
Digital Metaphors
in Problem getting shapes to line up. Comment by nicocizik December 2005Hi Adam,
Thanks for the info. From what I can gather, it looks like we will need to
start drawing rectangles with the LineTo routine as well to get them to line
up. I will see if I can get this fixed for a patch and get back…Hi Adam,
After looking at the source a bit, it looks like ReportBuilder uses the
TCanvas.Rectangle() procedure to draw a rectangle shape and the
TCanvas.LineTo() procedure to draw a line (the border property also uses
Li…Hi Adam,
1. Make sure the Left and Width properties of each of the shapes is
identical to ensure they are lined up.
2. If you are creating a grid or border that covers the entire report, you
may consider using the…Hi Mike,
You have a few options.
1. Create a new report with only a detail band. Then place multiple
Section Style subreports inside the detail band and load each individual
report template into each of these subr…Hi Filip,
We have not seen this behavior before. Which version of ReportBuilder are
you using? Are you loading templates? If so, you need to be sure the
AutoStop property is set to True when you save the template. On…Hi Paul,
The TdaWDBDEQueryDataView is not a native ReportBuilder class. This is
probably part of a custom DADE plugin that was created specifically for this
application. It also looks like some other classes were added to DA…Hi Carl,
Are you using a registered version of ReportBuilder or an application with
ReportBuilder built in? I'm a bit confused about what exactly you would
like to happen. Datasets can dynamically be created in Delphi or in …Hi Nols,
You may need to re-compile and re-install the Interbase Express packages for
ReportBuilder. Go into your installed packages list in your Delphi IDE and
see if the entery for "ReportBuilder Data Access for Interbase E…Hi Harry,
Unfortunately this is not currently a built-in option of the Edit Toolbar.
Thanks for the suggestion.
--
Regards,
Nico Cizik
Digital Metaphors
in Width of DataPipeLines DropDown box Comment by nicocizik November 2005Hi Harry,
The datapipelines are sorted based on the z-order of the form or in DADE in
the order that they are created.
--
Regards,
Nico Cizik
Digital Metaphors
in DataPipeLines DrooDown Sort-Order Comment by nicocizik November 2005Hi Jeroen,
If possible, could you please construct and send a simple example that shows
what is happening that I can run on my machine in .zip format to
support@digital-metaphors.com. I think if I can look at your code, I wil…Hi Jeroen,
Creating an event such as the OnMailMerge as you describe would be a good
approach however you would be forced to change the Interface section of the
RB source, which will render RAP useless (as we do not ship the s…Hi Pierre,
Sorry, my posts are usually in psuedo code. TStringLists are 0 based lists.
liCount := ppMemo1.Lines.Count;
ppMemo.Lines[liCount - 1] := ppMemo.Lines[liCount - 1] + MyDbField.AsString;
--
Hi Pierre,
You could possibly determine how many lines are currently in the memo, then
add your text to the last line. Something like the following...
liCount := ppMemo1.Lines.Count;
ppMemo1.Lines[liCount] := …Hi Walt,
Ed is correct. Depending on how you are accessing your data, you will
either need to alter your query in Delphi or if you are using DADE, you can
access the SQL object and alter the SQL there. ReportBuilder 9 includ…Hi Tom,
Section subreports are generally meant to be used to merge multiple reports
together in one. When groups and other bands other than the detail band are
added into the mix, problems start to arise. If each person in t…