nicocizik
Comments
-
Hi Larry,
Be sure each report (ie. the main report and subreport) is connected to the
correct datapipeline using the Report | Data menu option. How are you
linking your data? Check out the article below for more clues on what … -
Hi Massimo,
If you would like to check the position of a component inside the detail
band, check out your previous post. I answered it with an example of how to
do this using the draw command events.
--
-
Hi Stijn,
If you disconnect the HeaderBand.BeforePrint event and set the subreport's
Visible property to True, does the subreport print? Then once you connect
the BeforPrint event back, be sure the line setting the visibility i… -
Hi Oleg,
The ability to display hints when the mouse is over an object in the
Previewer is not a built in feature in ReportBuilder, however, all dialogs
in ReportBuilder (with the exception of the Designer) are replaceable so it… -
Hi Alex,
--------------------------------------
Article: Distributing Runtime Packages
--------------------------------------
Question: "What packages do I need to distribute, since I don't use all of
the funtion… -
Hi David,
As you probably already know the TppCrossTab component however adds the
field names automatically to its columns. Unfortunately there is no built
in way to add a field name to a report without using a TppLabel or
Hi Bernd,
Unfortunately you will not be able to do this in RAP. You could possibly
add some code to the DADE plugin you are using to connect to the database.
I assume you are using ADO, so you could take a look inside the daADO…Hi Wim,
If you are creating an end-user application, you can set the
Report.SaveAsTemplate property to True and the Designer will prompt the user
if he/she wants to save the template if it's been changed. Remember that
thi…Hi Alison,
Your best approach to this would be to use a Report Object Loop to access
every component in your report, then depending on if the object is a line or
not, set the color of that line. Below is a quick example of what…Hi Neil,
Change the entery in your library path from \RBuilder\Lib\ to
\RBuilder\Source\ and rebuild. Then if you like you can move all the
ReportBuilder TChart .dcu's to your \RBuilder\Lib\ directory, (replacing the
old o…Hi Patrick,
------------------------------------------------
Tech Tip: Copy RTF data from TRichEd to TppRichText
------------------------------------------------
You can copy RTF data from Delphi's TRichEd to ReportBu…Hello,
This is not an error that has been reported by any other customers. It is
likely a printer driver or video driver error.
Try downloading tehe latest printer driver from the manufacturer's web site.
--
Hi Dave,
If possible, please send an example demonstrating this behavior in .zip
format to support@digital-metaphors.com and we'll take a look at it for you.
--
-----------------------------------------
Article: Creating a Preview Plugin
-----------------------------------------
Q: I've followed the tutorials and registered a Preview Form replacement but
that did not affect the Tpp…Hi Stan,
The only other thing you could try is toggling the DirectDraw property and
see if that makes a difference. Other than that you may have to manually
change the background color of your image to match the background of y…Hi Stan,
As a test, try disconnecting all your event handlers and re-print your
report. Also, try setting the Transparency to False as some printers cannot
handle transparent images.
--
Hi Don,
Unfortunately there are no built-in components that do what you are saying.
However there are a number of add-on components for ReportBuilder that could
possibly work for you. One new add-on that looks very promising is…Hi Don,
I'm not sure I fully understand the timing of your application. Have you
already loaded a report when the user tries to use your utility to create a
query? Your best option would be to process all data before the repor…Hello,
Send an email to sales@digital-metaphors.com with the name and/or email
address you used to purchase the previous version of ReportBuilder and we'll
take care of it for you.
--
Hi Larry,
You can remove a subreport temporarily from a report by simply setting its
Visibility to False and disconnecting it from a pipeline.
MySubreport.Visible := False;
MySubreport.Report.DataPipeline := nil;
---------------------------------------------
Article: Forcing a Page Break
---------------------------------------------
Question:
How can I force a page break occur based upon
a condition calculated at run-time…Hi Martin,
Sometimes certain code, when executed during report generation or printing,
can cause the report engine to become lost or confused and your output will
not look the way it was intended. Usually when a report looks ok…Hi Bill,
This is not a known issue with DrillDown reports. A few things to try:
1. Disconnect all event handlers and re-run the report.
2. Download the trial version of ReportBuilder 7.03 and test with that.
Hi Bill,
Officially: I am unable to disclose any information about the new features
added to ReportBuilder 9 until an official feature list is released.
Unofficially: yesin enable display grid ? Comment by nicocizik November 2004
Hello,
Sorry, this feature was added, then removed from a previous version of
ReportBuilder due to the excessive flickering of the designer when the grid
was enabled. It is a mistake that the grid options were left in the
…Hi Walter,
How are you connecting to your SQL Server database? (ie. ADO or BDE). If
you are using BDE, you may need to change the Blob Size setting for that
connection in the database settings. I believe setting this option t…Hi Will,
Check the timing of the variables you are using and be sure they are not
resetting at the wrong time. Also be sure that any code you have executing
during report generation is not directly affecting the report output. …Hi,
Are you able to recreate this issue using the JITPipeline demos located in
the \RBuilder\Demos\1. Reports\.... directory? If so, please send the exact
steps you took to do so and I'll try to recreate the issue on my machine…Hi Reju,
Usually when report components do not show up when printing, this means
either your data is being manipulated during report generation or some other
event handler code is causing the Report Engine to get lost. Be sure …Hi Martin,
Mousewheel scrolling in the preview window will be enabled for the next
release of ReportBuilder.
--