rbuser
Comments
-
Very simple report, no subreports. Set to single pass no cache, single data
table
3 groups defined, several variables in each group.
All variables are set to calc on traversal and reset on group end.
In the onc… -
Hi Nico,
I have contacted your suggested option but their controls are not currently
available in the RAP environment (which is marvelous!). Do you intend to
impove your crosstab control or are there any other options?
<… -
Yes, I can do that, but I need to code my own parser procedure to
manipulate that string (find, read, update, add or delete constants), so I
was wondering, if ReportBuilder already do that parsing on the
GlobalConstProgram I c… -
Can we add this to the wish list for the future???
Thanks for your help, Nico.
Shoji
-
Nico,
We don't need a pass-though function. We just need to be able to drag and
drop RAP statements that are repeatedly used in a report. Our customers do
not have knowledge of object-oriented languages, so we have provide a e… -
???????....I'm confused......
How does this related to make our custom statements show up along with
"begin...end", "if...then...else..."????
If you go to "calc" tab in the report designer and choose "language" tab, a
Greetings,
this helped me a bit, but what about report objects, which are mentioned in
RAP (something like if ... then DBText1.Visible := true;), but got deleted
by the user? The code can't be executed then. Is there a way to …There are different fields in each report -> after replacing there are
some different fieldnames, that could not exist. To check each of these
fields is very "difficult".
Is there no possibility to check a _complete_ rap-pr…Thanks,
Jose Maria Sanmartin
Sorry, I've posted to the wrong news. I'll post to dm.p.rb.general.
ricardo
Hi Nico !
Thanks, but does RB 7.0 support parameters ? I thought it did not, thats why
I wanted to use Global variables. Any way I got that running by using one of
the sample code what u gave in one of the earlier posts.
…Thank you for your answer.
user
template
the
more.
Sylvie
--- posted by geoForum on http://delphi.newswhat.com
I tried this in an other application and there it works.
My own procedure works there as wel.
the settings for search/lib path etc. are the same.
if i use a chart in the report it works so the tchart or tcustomschart are…The problem stays if i change the type of the parameter in the signature to
something else (integer)then i don't get the error
class function TmyFillChartFunction.GetSignature: String;
begin
Result := 'function FillChart…Hi Nard,
i tried the same here but it did not make a difference,
any other suggestions?
kind regards,
Ruud
r.bernards@meurs-software.nl
Thanks
It works!
Cool, thanks, how do i get the value in the cell from the row & column
indeces?
Sorry i didnt mention, this report is in the "End user configuration", to be
run from the reportbrowser.
Excuse my Ignorance but none of the below give me a green icon.
lSQLBuilder := TdaSQLBuilder.Create(Report.DataPipeline);
or
lSQLBuilder := TdaSQLBuilder.Create(Report.DataPipeline.LOT2);
or
>Hello,
occur
pipelines?
this
without
that
created
with
data
First of all thanks to Nico for replying.I am giving answers for queries
you asked.Kindly look into this issue
Delph…Honestly, I have already tried assigning to a local variable first...in
fact I only removed it to clarify the code before posting it up. But lets
face it, nothing I write in my RAP code should create an AV unless I am
doing anythin…No, there's definitely something wrong here. In the code below I still get
an AV. Moreover, if I change the literals (-9999 and 9999) to constants I
get "Index Out of Bounds error (-1)" in the code editor or maybe the 3rd or
4th us…
That was a good idea, but without any aswer from Digital-Metaphors, I guess
that's it.
Thank you.
I agree. I have an RB10 license, but I have a project that I cannot update
yet because it is in Delphi 5 & it uses RBAddOn components. We should at
least have an easy way to get dcu's compiled for the compiler we use. Can't
…Well, updating my RB7 to RB10 is not free, and we don't actually need to
update. We already have a RB licence. Just saying "update to RB10" is not a
good solution at all.
All the components we have here were bought with sour…Well, updating my RB7 to RB10 is not free, and we don't actually need to
update (or support). We already have a RB licence. Just saying "update to
RB10" is not a good solution at all.
All the components we have here were bou…Hello,
as an idea i would create a Stringlist. make an
List.Add(FloatToStr(xxxx)+';'+FloatToStr(yyyy)) where xxx is your value to
add and yyy is the value of your global variable. in report after print,
save the stringlist to …Hello Stef,
Found it myself.
procedure TijdenOnPrint;
begin
If Trunc(FacturenUITDetails['Datum']) = 0 then
Tijden.Visible := False
else
Tijden.Visible := True;
end;
Hello Nico,
I got it.
procedure TijdenOnPrint;
var HoofdRapport : TppReport;
begin
HoofdRapport := TppReport(Report.MainReport);
If Trunc(FacturenUITDetails['Datum']) = 0 then
Tijden.Visible := …Hello Stef,
Could it be because I try using it on a ppChildReport1 (subreport)?
And if so, how can I access the parameter from the ppChildReport1, as the
ppChildReport1 doesn't have it's own parameters property?
Rega…