nicocizik
Comments
-
Hi Misha,
Since we do not provide the source to RAP, all other RB source files must be
interface specific in order to successfully compile. The error you are
receiving indicates that one of your RB source files' interface sec… -
Hi Mervin,
Sorry, I forgot about TRichView. (http://www.trichview.com) This is in
fact an HTML component that could be what you are looking for. The name of
the product… -
Hi Mervin,
There are no HTML components available for ReportBuilder. One option would
be to convert your HTML into an image and display it with a TppImage
component. Another would be to convert it to RTF and display it with … -
Hi Bhoj,
I'm a bit unclear about what you would like to do. Are you looking to give
your users the ability to change the value of a variable on a report without
having to change any code in your application? Are you trying t… -
Hi Bhoj,
If you are simply passing a value directly to a variable, there is no need
for an autosearch field. You could obtain this value before the report
prints and assign it directly to the variable value. This could be do… -
Hi J.D.,
When you load a template into a report object, the current report definition
is completely replaced. If you would like to revert back to the original
report, you will need to keep a copy of it (as a template file or … -
Hi Valdimar,
Have you been able to contact the Pragnaan staff yet? As I mentioned
before, I do not have access to their source code and therefore do not know
how they are processing each page inside their StartJob and EndJob … -
Hi Stijn,
kuRAFMerge is not part of ReportBuilder. It is a third party utility
provided for free by Kevin Ugan. We have not heard of this issue using the
kuRAFMerger. You may try contacting Kevin and finding out if he has a… -
Hi Silvio,
My first suggestion would be to upgrade your version of ReportBuilder to RB
9.03. For upgrade information, contact info@digital-metaphors.com with your
serial number and purchasing email address.
--
Hi Cela,
If each label is completely contained inside the detail band of the report,
adjusting the DetailBand.BandsPerRecord is the correct way to go. I would
suggest using the DetailBand.BeforePrint event to check the amount…Hi Cela,
Sorry, I'm a bit unclear about what you are trying to accomplish. Are you
printing exact copies of the same label or would you like to limit the
amount of labels printed based on a record value?
Are you pr…Hi Everett,
All reports created with previous versions of ReportBuilder should be
completely backward compatable with RB 10.04. We have made numerous changes
to look and feel of the designer and previewer however we have work…Hi Juan,
Take a look at the following example of adding text search to a custom
preview form. Note that if you are using a preview plugin, this is not
necessary.
in How can I Show the "Find Text Toolbar" in my own Custom Preview Form. Comment by nicocizik September 2006Hi Fr?d?ric,
ReportBuilder 10.04 for Delphi 7 has been natively compiled with TeeChart
Pro 7.07. My first suggestion would be to uninstall both products and
reinstall TeeChart Pro 7.07 first, then reinstall ReportBuilder. If…Hi Steve,
You need to add ppJPEG to your uses clause to successfully use jpeg images
in a report.
--
Regards,
Nico Cizik
Digital Metaphors
in Error printing JPegs Comment by nicocizik September 2006Hi Dave,
You can set the visibility of any object on a report using the Visible
property. For instance, if you would like to toggle the visibility of a
region based on the value of a data field, your code would look something…Hi Dave,
If you would like to hide a complete record (or detail band) if a certain
condition exists, the best way to go about it is to place a TppRegion inside
the detail band with its ParentWidth and ParentHeight set to True …Hi Craig,
Try using the PageStyle band. Anything placed inside this band will print
behind the main report output on each page. You can enable the PageStyle by
selecting it in the Report menu of the designer.
-- <…Hi Juan,
Take a look at the MDI example located in the \RBuilder\Demos\3. EndUser\4.
MDI\... directory. This demo shows how to set up a MDI application with
ReportBuilder. The same concepts will apply if you are just using t…Hi Bruno,
I'm very sorry for the delay, my newsreader did not pick up you last post.
If possible, please send a minimal example of what you are trying to do
(including the form inheritance) in .zip format to
support@digi…Hi Bruno,
This was a change we made a while back to better manage the TChart object
from the TppTeeChart. In order to change the color of the chart, you will
need to access the TppTeeChart.Chart property at runtime.
Hi Weverton,
1. Which version of ReportBuilder/Delphi are you using. What database are
you connection to and which connectivity are you currently using?
2. Does this only occur when changing the page forward or backward…To handle the situation where a static component (such as a Label or DBText)
is above other static components, you will need to use regions. For
instance, if you place a region with Stretch set to True at the top of the
detail ban…Hi,
Instead of trying to manually resize the detail band, try setting its
PrintHeight to phDynamic and simply toggling the visibility of the label and
line in code. If the band is a dynamic height, then it will snap to theIt is my understanding that when dealing with TDateTime types, the time is
represented by a decimal so the value 12345 would represent a certain day at
12:00am and 12345.5 would be the same day at 12:00pm. If you are just
dealing …Hi Dave,
A TDateTime is essentially a Double representing the number of days since
12/30/1899. It is possible to subtract two TDateTime value from one another
to determine the number of days appart they are. If you are using…Hi EdB,
I would start with your first idea to remove the graphic components and see
if that helps. I know we have numerous customers using GraphicEx
successfully with RB so that one should be good.
--
Regards…Hi EdB,
This is not a know issue with RB 7.04. Does this error occur for every
report? Is this happening at design time or runtime? Have you tried
recreating it with the latest version of ReportBuilder, 10.04?
--…Hi Ding,
This is currently not a feature of ReportBuilder. The RAP code was designed
to be "hidden" inside the template file.
--
Regards,
Nico Cizik
Digital Metaphors
in how to read programstream? Comment by nicocizik September 2006>BTW - if NewPageThreshold is "0" - I assume that the group internally uses
No, the NewPageThreshold defines the amount of space available below the
bottom of the group header. If the header band is larger than the space
a…