rbuser
Comments
-
Hi Nico,
yes, i know i use the stringlist in RAP.
But i can not transport it via Report.Parameters.
I like to preper a stringlist in delphi and then transport it to RAP,
where i want to use as parameter.
O… -
Problem solved:
I've seen an example where you use the following function within the report:
function GetLookAheadTotal: Variant;
var
lsTotal: String;
lsKey: String;
liPos: Integer;
begin
Hi,
Yea I tried that this morning. Uninstalled, deleted borland directory, did a
search for raCotMod and ppComm files on the PC and then reinstalled. Are
there any other directories which may need deleting to be able to comple…Hi,
Tried all the steps below and the same problem is still occuring.
I tried making ppcomm.dcu and racodmod.dcu readonly immediately after
installation of Rbuilder and I see nothing attempting to modify them or
recompile…RB 11.07 did not make any difference. I checked the code for
VariableCaculations and noticed that the variables were referenced by
"variable.value" not just "variable". I made that change and the variable
worked correctly. Thanks f…I just downloaded 11.07 - I'll install it and see if that fixes the issue.
If not, I'll check the demo to see what is different..
Thanks,
Tim
I've actually tried changing the calulation order to after the Total
Variables (and also before just to look for a solution), but the results
remain at 0.. Any other thoughts?
Thanks,
Tim
Thank you - It works fine.
I just knew about BodyText. is there any further documentation about the
Objects, their properties and methods ? I just used rbwiki and rap.hlp and
didn't really find, what I was searching for....
Hi Nico,
works just fine now, thank you very much.
For some reason the WiKi-search doesn't return any results to "IsNull", so I
wasn't able to find anything about it that way...
Ok, when I only place this script of the front-most shape, it seems to work
fine - of cours, once only.
But the code in the onDrawCommandClick event of the second shape will not
fire. It just seems to be in the background, but…Even with passing the report to the pass thru function, I don't get success.
Simple in Delphi, it seems to work fine.
I've got a form, containing a viewer and a simple button to change the
front-back-order of the 2 Object…Sorry, but no sucess yet.
I modified my Delphi-code as follows:
////////////////////////////////////////////////////////////////////////////////
Class function TmyTestFunction.Category: string;
begin
Result := …I did some more exploring and I find that changing the report from two
to one-pass makes a difference. The rowcount value starts at 3 on the
first detail row this appears and when set to two-pass it starts at 6.
It still incre…Nard Moseley (Digital Metaphors) wrote:
Hello Nard,
Thanks for your reply. However, I don't think this addresses my
situation. I probably didn't describe the situation very well. Let me
try to explain further.
…Hi Nico,
Thanks for your suggestion, I have been experimenting with this too. The
problem I had with this was that the footer that should go on every apge is
a 'signature' block for a contract, while the block that should only…Hi,
That seems to work as aspected.
{ TRapSetReportParameter }
class function TRapSetReportParameter.GetSignature: String;
begin
Result := 'procedure SetReportParameter(aReport: TppReport; aParameter:
Hi Nico,
thru
Didn't think about that. Will try that next week.
Regards,
Jeroen.
Hi Nico,
Ouch! Please consider it.
When a parameter is connected to an autosearchvalue the autosearch value is
also not accessible from Reports.AutosearchValues[], making connecting a
parameter to a query a lot less interes…I meant is there a way to get a list of just the keywords that the
report writer RAP can use for any report? Ie, all of the keywords
available on the language(?) tab in the report writer. Not the keywords
a specific report uses (…That works thanks. Just curious, is there a way to get a list of the
rap code? For example loop through something that gets the UpperCase,
trim, etc commands. No big deal, just curious.
okay. Great. Thank you.
John
Perfect, thank you.
FormatCurr('$,0', aValue)
I believe it's also documented in the help file.
The order is determined by the order of your data.
you can set the timing of the variable to reset on the g…Nico Cizik (Digital Metaphors) ha usato la sua tastiera per scrivere :
Hi Nico, thankyou for all clarifications.
Bye
--
Morde
Nard Moseley (Digital Metaphors) ha usato la sua tastiera per scrivere
:
I think that using pass-thru functions should be the best approach to
solve these spcific kind of issues. In my case, adding a pass-thru
function w…With the example I am not very clear,
I have another question for this problem
how do I invoke a function (which is in the rap maireport) from subreports ?
I have discovered on the Query Designer's Search tab, the parameter drop
down box which appears to be what I need.
However when I select the required parameter from the list, I receive a
database error.
The generate…Hi Nard
Thank you for responding.
I have written custom functions for RAP before, I was just hoping this might
be something we could expect as standard, because as it currently stands,
multi-value parameters can't b…Thanks Nico
Would you consider adding it to a release of RB v11 (or a patch), as I
cannot justify the upgrade to v12 at this time?
Jason.
Interestingly, if I declare a variable of type TppParameter, I can then
access the Value propery in the RAP, but still cannot access the Values or
ValueCount properties.
var
sCode: String;
lParam: TppParameter;