nicocizik
Comments
-
Hi,
For future reference, we prefer that you use your real name when posting to
these newsgroups.
This is not a known issue with ReportBuilder. Usually when the report
output is different for the preview than it is… -
Hi Filip,
It takes two steps, but you can use the utility functions provided in
ppUtils.pas to convert a value. Otherwise you could do a direct conversion
using a routine you create yourself.
example (Convert 200 m… -
Hi Fathur,
Take a look at the following example of extracting the SQL object.
Specifically look at the ShowSQLText routine. This is called multiple times
as each dataview is created in code however if you were to do something… -
Hi Priscila,
Is there a reason you cannot just use the title and summary band? These
bands are designed to appear only on the first and last page. If you would
like some logical separation between report components inside th… -
Alex,
Unfortunately we do not have an example that calculates percentage that
support RB 7. If you take a look at the code of the example you can see
that since the LookAhead property is set for the DBCalc components, these <… -
Hi Alex,
Keeping a running percentage of a group is very different from adding
control characters to the last detail of a group.
Hi Alex,
Yes this is what I was suggesting. As I mentioned before, ReportBuilder
wasn't designed to know how many records are in each group. It is easy to
alter the first record of a group using the AfterGroupBreak but…Hi Alex,
ReportBuilder does not have any built-in feature to pre-count the number of
records in a group. One option might be to create a two pass report and in
the first pass, keep track of what record each group breaks on. …Hi Paul,
Are you changing the font of the component at runtime in an event? If so,
you might try either moving the component further away from the edge of the
paper or shrinking the font size as you do so.
--
--------------------------------------------
Article: Troubleshooting Lost Event Handlers
--------------------------------------------
Let's assume you have created a report in Delphi and assign an event
handlers to the OnP…Hi Mark,
Inside the Report.OnNoData event, try closing the preview form.
procedure TForm1.ppReport1NoData(Sender, aDialog: TObject;
var aShowDialog: Boolean; aDrawCommand: TObject;
var aAddDrawCommand: Boolean);Hi Mark,
If you are loading templates, this property will need to either be set in
each individual template and resaved or set in code using the OnLoadEnd
template event. Take a look at the following article on using template…Hi John,
If you are loading templates, you are most likely loosing your event handler
references. The most graceful way around this problem is to keep all your
event code local to the template using RAP. Otherwise you will n…Hi John,
ReportBuilder does not have anything built-in that will affect your ability
to debug code.
1. Be sure your library path is pointing toward the \RBuilder\Source\...
directory.
2. Be sure your project …Hi John,
Take a look at my reply to your previous post.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Jeff,
ReportBuilder 10 includes the ability to email an exported report directly
from the previewer, explorer, or in code. There however is not built-in
feature to send individual pages of a report as separete emails. One…Hi John,
You also need to assign the name of the template so ReportBuilder can find
the specific template you want to load. This is the value of the NameField.
chreport1.Template.DatabaseSettings.Name := 'myTemplate';
Hi John,
Take a look at the following article on creating subreports in code.
-------------------------------------------------
TECH TIP: Creating a SubReport in Code
------------------------------------------------…Hi John,
Yes, assuming you are loading templates from your database, you can use the
Template object to load your reports.
Once you set up the Template.DatabaseSettings, you can call the following to
load the templa…Hi John,
Two options...
1. Combine the two reports you currently have into a single report
essentially creating one print job. This can be done in a number of ways
including the use of Section Style subreports. (…Hi Laerico,
At first glance, your code seems fine. Is there still an error you are
experiencing?
--
Regards,
Nico Cizik
Digital Metaphors
in Importing a report from .rtm file to another database Comment by nicocizik March 2007Hi Laercio,
Take a look at the article below. It refers to BDE and ADO but the concept
is the same. BDE = (your Oracle connection) and ADO = (your Interbase
connection) in your case.
------------------------------…Hi Patrick,
This is currently not a feature of the report explorer however this would be
a good addition. We will consider adding this functionality for a later
release of ReportBuilder. Thanks for the feedback.
-…Hi Andrew,
The font size of a TppMemo object can be set using the Memo.Font.Size
property either at design time in the object inspector or at runtime before
the memo is generated.
--
Regards,
Nico C…Hi Andrew,
Which version of ReportBuilder/Delphi are you using? Which database and
connectivity are you using? If you open the join dialog and select Left
Outer Join for two tables, then take a look at the SQL tab, it displa…Hi Andrew,
If you are using DADE, you can define a left outer join using the join
dialog. For instance, if you start a new query designer and add two tables
in the Tables tab, the join dialog will pop up. Then in the top lef…Hi Paul,
This is not a known issue with ReportBuilder. Try downloading a trial
edititon of RB 10.05 and see if the behavior still occurs. If so, please
send a small example demonstrating the issue to
support@digital-me…Hi Luc,
Sorry for the delay in this response.
One option would be to generate the report multiple times with the use of
subreports inside a main report. You would need to assign the same template
to each subreport …Hi Dean,
In my testing with Delphi 2006 and AdvantageDB 8.1, I was able to get the
demo working correctly by assigning the proper path to the DB component and
altering the two item queries' SQL code to select the "Name" and "S…Hi David,
Once you implement the OnCustomSaveDoc event, you must then provide the
logic which will save the report. ReportBuilder will no longer save the
report for you. Take a look at the TppTemplate class in the ppTmplat.p…