rbuser
Comments
-
nevermind, got it working. i missed ';' in signature.
-
Ignore that. The parser stumbled on my incorrect quotes.
--
Bill Todd
-
I am missing something. On compile the following code generates "Line
8: Parser error".
var
SqlBldr: TdaSqlBuilder;
begin
aCancel := False;
SqlBldr := TdaSQLBuilder.Create(Report.DataPipeline);
SqlBld… -
Thank you! It was my mistake :-s.
David Caouette
P.S: ReportBuilder is now our new standard for reporting. We're now
migrating every Crystal Report to ReportBuilder and conversion is going
pretty well. Our support for… -
I still have the problem:
between the two following lines:
AppReport := _ppVariable.Report;
lCodeModule := raGetCodeModule(AppReport);
I put the following piece of code:
if (AppReport is TppChildRepor… -
I found the problem :
in a sub-report, if I call
lCodeModule := raGetCodeModule(AppReport);
with AppReport as TppChildReport, lCodeModule returns nil. Is this an issue
in RB ?
David Caouette
Thanks a lot, I'll try to do it this way
Eduardo Martinez
Nard,
but shouldn't they be called every time the report prints??? with or without
preview?
i was relying on this event to fire
i had to move all the code to a dummy detail band to get things going
what is the purpose of be…same with onstartFirstPass and OnEndFirstPass
one thing to mention though and maybe relevant, i'm printing a fixed report
so without a datapipeline
i've moved the code to the detail band BeforePrint and AfterPrint and tha…This diden't work... are you sure the "Duplicates" property is made
"Visible" in RAP?
On Mon, 10 Jan 2005 10:36:37 -0700, Nard Moseley (Digital Metaphors)
This is an add on message to my previous post regarding raCodMod. I
uninstalled, rebooted, installed again and without trying to utilize any
Rap, I added some dbpipelines and when I try to compile I get the following
message:[Fata…Making sure the variable was at the bottom of the Z order worked.
Thank you.
Nard,
thanks for the answer. In the meantime I redid the reports and added a
check, similar to what you proposed.
BTW: Why not release the patches either on the DM homepage or in the NGs on
a regular basis?
Thanks!
[]s,
Alessandro Ferreira
Nard Moseley (Digital Metaphors) wrote:
Which demos? I looked at quite a few, and find examples of using RAP
pass through functions - and use of the functions already provided.
But I was looking for how the end-user could create a fu…Scott Rowat wrote:
Thanks. Worked great!
Scott Stalheim
Use the DetailBandBeforePrint event to do the calculations and not the
DetailBandBeforeGenerate as the DetailBandBeforeGenerate event does not get
called if the Detail.Visible = False however the DetailBandBeforePrint event
does ge…You can use something like this in the Footer.BeforePrint event:
begin
Footer.Visible := Report.SecondPass and
(Report.Page = Report.PageCount);
end;
note that on the last page the text may print into…Thanks Nico.
Hi Nico,
I took i look inside Rap and i was able to create a parameter like this
report.parameters.add('MyParameter',dtInteger,1);
and then
lPageNo := Report.Parameters['MyParameter'];
But i still need to use a Delphi…Hi Nico,
But how do i ask the first page number to the user?Trick hein!!
Thats my problem, the user has to be able to set the first page number every
time he open the report.
Today i have a Delphi form to ask the user the first…Thanks very much!
I try to find out from Help for useing NoteBook, But there is a few
paragraph about it.
Where I could get more detail about this property?
Regards
abcat
-----------------------------------…Thanks Nico!
Yes, It works after I click button for ppDesigner.Show. One more question is
May I only show Preiview at first.
And Report template shows manually by pressing some shortcut key.
Now it is show automaticaly.
done!
I've resolved by using a ppVariable with calctype = veDataPipelineTraversal
and in onCalc event I do the sum.
but sometimes , when the one of the rows to sum is the first new page it
seems to calc it 2 times ... maybe…i have rb7 ent ;-)
the event in the detail band is all right: it fires for eash rows and the
variable value is correctly incremented. (i tested it with some showmessge
in rap !)
the problem is to show the value in the foo…Sorry for this silly question... After searching a bit more I found the
Report Tree!
Thanks
"MuadDib" a ?crit dans le message de
Hi Tarun,
Nico is right, use two TppVariables.
I had the same problem the first time I used ReportBuilder. Also, there are
some functions in Crystal's Running Total field that can't be reproduced
easily in ReportBuild…Oops...
You will have to make the following change in the
TraReturnDaysBetweenDates.ExecuteFunction procedure:
CHANGE:
iResult:= ReturnDaysBetweenDates(Date1,Date2);
TO
iResult:= DaysBetwe…Richard,
Here is the RAP Pass-Thru function that we use:
Add the following to the interface section of the unit:
type
TraReturnDaysBetweenDates = class(TraSystemFunction)
public
class function …Thanks for the reply Nico. I've been waiting for an excuse to upgrade from
7.04. I guess now I have it.
Mitch