digitalmetaphors
Comments
-
Check out the installed RAP demos main project. They show how to change the
font color for fields based on the numeric data. The demo report is #12
which shows how to do this.
Cheers,
Jim Bennett
Digital … -
First, it is not a good idea to create component in the BeforeGenerate event
because if that event is fired more that once you'll create unwanted
component. You can do it either before you call the Report.Print or in the
global OnCrea… -
I tried reproducing this with a region of multiple charts and stretching
components that would puch the chart region to overflow onto a new page, but
with no luck. The remaining charts properly finished printing on the
following page.… -
You can toggle different content in headers/footers based on the page number
using the header's/footer's BeforePrint event. For example, let's say we
have an image which we want to only appear on the even pages and a label
whose conte… -
Sorry, RBuilder is not currently supported in CBuilder.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
The RichText component will allow you to do this.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
There are demos included with RB Addon that have source provided. This
should give you a good intro to using those components.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
The installed DBISAM demo should work. I am running DBISAM 3.10 with the
latest daDBISAM DADE plugin from Jon's website. The data dictionary works
fine in our tests here. The RB installed daDBISAM you have in your
RBuilder\Demos\End… -
Is description a text or a memo field? Wordwraping on a text field won't
cause it to stretch. Use a memo field instead.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
The base device class has a PageSetting property, set this to psFirstPage.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
You can use TExtraDevices to render the report pages to a bitmap. One you
have the bitmap there probably multiple ways you can come up with to rotate
the image. The one that immediately comes to mind is to simply rotate the
bitmap ma… -
There are two options that come to mind. You can either render the final
output to a bitmap and rotate the bitmap. The other options, which I think
will produce more faithful results and give you more control is to create
four separat… -
Try using an in memory dataset, rather than a stored proc, to retrieve your
data locally and optimize report execution.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
Jpeg is a lossy format so unless you minimize compression and maximize
quality you will usually lose a great deal of information. A lossless format
such as a device independent bitmap would be much better. EMFs (enhanced
WMFs) are a p… -
This is more easily done in RichText. The memo won't support multiple
fonts.
The only other way to do this without the rich text component is to
dynamically create TppDrawText objects (one for each line of memo text) and
s… -
There is no converter that we are aware of. You could extract the SQL text
from the queries you build with shazaam and dynamically create query
dataviews in DADE. Then assign the SQLtext directly to the dataviews. The
syntax will b… -
Are you coming from a previous installation? Sometime the earlier packages
are not cleaned up correctly and a corrupt install results. You can try
doing a corrupt cleanup install.
--
Cheers,
Alexander Kramnik
As per the first error, select Select Component->Install Packages and make
sure that all the RB packages are checked, specifically Data Access for ADO.
TeeChart 5.01 is fully supported in RB 6.03. You could try reinstalling RB,
You can use a Delphi TRichEdit and use this before running the report in
order to get the rich text from the user. Then display it in the report by
assigning the rich text to the richtext control in the report.
Otherwise, you ca…Currently 6.03 is the most up to date release. Report Builder 6.5 and
ReportBuilder Server are due out within a few months. Check out
www.digital-metaphors.com/server.
You cannot use GETDATE() as an autosearch criteria because t…Which event are you using to set the visible property of the variable? One
way to approach this is the following: Place a variable in the group footer
which is reset on GroupStart. Code the DetailBand's Before/AfterPrint in
which you …1. Simply set KeepTogether on the Memo
2. Put all the components in a region and set KeepTogether on the region.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Sorry, this is not supported in RB.
Cheers,
Jim Bennett
Digital Metaphors
You could set the band to be visible = True in the Report.BeforePrint event.
Then set it to visible = False in the band's AfterGenerate event.
Cheers,
Jim Bennett
Digital Metaphors
There is an example of this technique:
TForm1...
private
FStream: TMemoryStream;
procedure MenuRevertOnClick(Sender: TObject);
public
{ Public declarations }
end;
var
…Check out the AutoSearch demos found in RBuilder\AutoSearch. You can create
a dialog to query values from the user and then inject them into the query
object.
--
Cheers,
Alexander Kramnik
Digital MetaphorsAre there any empty bands at the end of the report, ie. a group footer band
or summary band? Can you send your report layout to
support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
Please do not crosspost.
The data pipeline traverses to the last record at the bottom of the page in
order for the band to get a chance to generate. When it generates, the
engine determines if the band will fit at the bottom o…If you actually want to write a conversion utility you can simply iterate
through your reports and then iterate through all the object in the report
using the loop below.
procedure UpdateReport(aReport: TppReport)'
fo…Which pipelines is the report using to traverse data? Try removing the
calendar component from the report to see if the problem dissapears. If the
problem persists you can send a demo to support@digital-metaphors.com so we
can reprodu…