nicocizik
Comments
-
Hi David,
All the internal Help 2 registration was provided by Borland. See the
following article. The actual RBInstallHelper app was created by us to make
the process of registering and merging our help files easier (both f… -
Hi Cary,
I have not seen this behavior before. Which operating system are you
running the application from? Does the error show up as a dialog in Windows
or displayed in the command prompt. Does the command promt display an… -
Hi David,
If you run the RBInstallHelper application from the command line without any
parameters, instructions for its use will be displayed.
RBInstallHelper MergeRBuilderHelp
RBInstallHelper MergeRAPHelp
Hi Cary,
Take a look at the "help installation" section of the following article on
manually installing the ReportBuilder Help 2.
ARTICLE: ReportBuilder Help 2 Help
----------------------------------
INTRO…Hi Charles,
When loading the designer, you will see an item in the task bar for the main
application and one for the ReportBuilder Designer. This is not something
that can currently be altered.
This is not a …Hi Dan,
This is not a known issue with ReportBuilder. Which database and
connectivity are you using? Are you certain all other items in you
application are the same including the data that is being accessed? Are you
a…Hi Vincenzo,
Using one of the following options may give you the features you need.
Thanks for the feedback.
----------------------------------------------
Article: ReportBuilder's RichText architecture
--------…Hi Vincenzo,
Yes, thanks for the feedback. We will consider adding this feature for a
later release of ReportBuilder.
--
Regards,
Nico Cizik
Digital Metaphors
in PDF Export Comment by nicocizik June 2007You need a begin...end around your if statement.
procedure DetailBeforePrint;
begin
if ppMemo19.lines.text = '5' then
begin
ppMemo19.Transparent := False;
ppMemo19.Color := clRed;Hi Daneel,
Try using the Band.BeforePrint event to set the color of the Memo. Also,
note that you will need to set the color back to the default if the
condition is not met so other memos will not remain the changed color.
Hi Daneel,
1. Be sure you have the Transparent property of the memo set to False.
2. Use the TppMemo.Color to alter the background color of the memo
component.
ppMemo1.Transparent := False;
ppMemo1.Color…Hi Chris,
Take a look at demo 124 located in the \RBuilder\Demos\1. Reports\...
directory. This demo shows how to print a only certain pages by sending a
page list to the device.
--
Regards,
Nico C…Hi Jeroen,
In order to implement your idea below, it would be necessary to be able to
print a child report to PDF because you would need to call SendMail for each
Section subreport that is printed. Calling SendMail creates a …Hi Jeroen,
There is no built-in feature to send multiple emails for a single report.
Ideally you would want to create a loop that changes the search parameters
for your connected dataset and then calls Report.SendMail (wi…Hi Mervin,
We have made many enhancements to ReportBuilder since version 7.04. Take a
look at the feature matrix located at the following web site for the current
major features. I would also suggest downloading a trial copy…Hi Marijo,
Use the TppDesigner.Menu property to gain access to the main menu of the
designer. From there you can alter the menu to your specific needs. Below
is a small example.
in Disabling Save button in Designer? Comment by nicocizik June 2007Hi Todd,
Yes, if you set the Report.AllowPrintToFile property to True and the
Report.ShowPrinterDialog to True, the printer dialog will display when you
call Report.Print. If you set the DeviceType to a file device, the print…Hi Gary,
This is currently not a known issue. Does this behavior happen with every
report (including the demos included with ReportBuilder)? Usually when the
printed output differs from the on-screen output there is some eve…Hi Lainkes,
Try toggling the Stretch and MaintainAspectRatio properties of the DBImage
component to get the effect you are after. Be sure you have the AutoSize
property set to False.
--
Regards,
Ni…Hi Paul,
For future reference, please send all attachments to
support@digital-metaphors.com.
Remember that when exporting to text, you need to be sure the text objects
on your report are measured to fit on a text gr…Hi Paul,
When exporting to a text file, ReportBuilder tries to translate the text
position of each text component on your report to a standard text grid
(similar to a dot matrix printer). This can look different between the <…There is no concept of a column header with horizontal columns in
ReportBuilder. You can try placing the field name to the left side of the
detail band and set it's visibility to false when you print the second -
last record as a …Hi Merrit,
It is simply a matter of creating a multiple column report and setting the
ColumnTraversal property of the DetailBand to ctLeftToRight. Be aware
however that this is a very limited feature in ReportBuilder. Interm…Hi Merrit,
ReportBuilder is not designed to display data traversed horizontally. You
could get to this effect by creating Left To Right traversing columns. This
however is a very restricted feature in ReportBuilder and shoul…Hi Michael,
Which version of ReportBuilder are you using? Is there anything
specifically different about this report than the others that print
correctly?
--
Regards,
Nico Cizik
Digital Metaph…Hi Ian,
-----------------------------------------------
Tech Tip: ReportBuilder and
Delphi's Translation Tools
-----------------------------------------------
To use the Delphi Language Translation supp…Hi Ian,
This may be possible however it will be difficult to add more languages to
RB without altering the interface section of some source files. This will
prevent the use of RAP.
As a staring point take a look at…Hi Ian,
ReportBuilder only supports adding one custom translation to a reporting
application. Which languages would you like to have included in your app?
This is something we will consider enhancing for a later release.
Hi Ian,
It is possible to compile one language resource into your main application.
If you would like to provide other translations in your product, you will
need to deploy the language .dll along with your application. Take …Hi Merrit,
Take a look at the following example on using the nwOLE library to extract
BLOB images from SQLServer or Access.
http://…