rbuser
Comments
-
How would I do that? Your not talking about reordering them on the screen
prior to printing, because I can do that, but it has not effect.
-
-
Yes, sorry, that isn't the right property. Try:
Report.AutoSearchFields[0].SearchExpression :=
FormatDateTime('dd.mm.yyyy',CurrentDate);
Paul.
-
Sorry but that did not work. And yes i want to affect the date the user sees
in the dialog and
show them current date. In what property is the values the users see in a
dialog stored?
Mvh, Terje
-
If you want to affect the date the user sees in the dialog, I think you
would have to write:
Report.AutoSearchFields[0].SearchCriteria :=
FormatDateTime('dd.mm.yyyy',CurrentDate);
not .Value
Regards, Paul… -
I tried to move the code to the BeforeAutoSearchDialogCreate but the result
is the same. No change in the default values in the AutoSearchFields.
This is what the help-file says about the event
"AfterAutoSearchDialogCreate"
Surely as this event is called AFTERAutoSearchDialogCreate, it is too late
to change the text in the dialog. I'd have thought that
BEFOREAutoSearchDialogCreate would be more appropriate?
Jason Sweby
Software Development Ma…I have looked at the demo 127 and still can not produce the results. I still
can not get the data value of the last record of the column. The event does
not seem to traverse the data. For instance
procedure CrossTab1OnGetValue…This query did not help me. I did have an error in what the result cross tab
should be from below:
Org A Org B
-----------------------------
Value A 22 202
Value B 3 …I am performing the calculation of the global variables on SubReport /
Before Generate event.
Then in the main report in summary band, I have a TppVariable and I am
assigning the global variable value to the TppVariable in the…The multi-post was accidental. I did not think I had the account setup and
thought first submit did not work.
Sorry.
Do you have any tips or tutorials that discuss how to handle "Date"
manipulation (addition/subtraction of dates) in RAP?
I've tried using a couple of the procedures/functions that I know work
in Delphi 6, but they error when I…Nard -
This partially worked. If I removed the date search from the 2nd query
- this worked fine... If I left the example date in there, it stayed the
example date.
Here is how I changed the code...
[start]
Nard Moseley (Digital Metaphors) wrote:
Thanks -
Ran into a snag trying to test this...
What I did to test it is I have a genledg query that lists account #,
sum of debits, sum of credits - with a date between autose…Is there anyway to do this in the Report, rather than in Delphi, as i'd like
it to be the clients responsiblity to do this, rather than ours.
Many Thanks
Mark
This would require a re-compile of the original application.
Hmmm, in that case, i have many options, however, i can't exercise that
option.
Shane
Not sure what you mean by that....since I am creating the stringlist in the
script
procedure Memo1OnPrint;
var
SL: TStringList;
begin
SL:= TStringList.Create;
SL.CommaText:= DBPipeLine1['User_Rights'];
I have finally gotten a chance to get back to this outstanding issue...
Although I (ValuTech) currently have a license for ReportBuilder 10.x, I am
NOT currently using it.
I am still using an older version of ReportBuilde…Thank YoU!
Shane
Ok, thank you!
Interesting that String Arrays are not supported.
Is there any way around doing something like
for I:= 1 to Length(MYString) do
C:= MyString[I]
Thanks
I have answered one of my questions
"why can't i access the default array of the stringlist, it does not like
SL[I]"
it looks like i can use SL.Strings[I] with no problem.
I still need help with the other quest…Thanks a lot!
It worked
Hi Nico,
This is for printing to a receipt - printer (Epson TM II). I need to
calculate the PaperHeight according to how many lines there will be in the
detail, something like "Report.PrinterSetup.PaperHeight := 80+(4.5 *
R…ok thanks ! I think know now what to do.
cheers !
Thankx,
This works for normal table fields, but when I use a calc field I
still get the name of the table field it's based on, not the "calc"
name...
Example: I select the field "difference" on the calc tab and I mak…Well, thats good news that you can forward enhancements. The other reason
I needed this was because I wanted the calcs expression field alias to
appear in my CROSSTAB report, as it shows the Alias. Thanks though, I will
have to look a…Nico,
We are using 10.04. I suppose your next suggestion would be to upgrade to
10.07 which I can do but I won't be able to do that right away. I will try
that when I get a chance.
Thank you.
Nico,
This would be nice, but I don't think I can use a label...the name is
shown on the main report tab but it's being set in a subreport
variable... The only way I know how to pass information from a
subreport to a main r…Small addition:
Variable3.Tag is being reset to 0 in ReportBeforePrint
Hi Nico,
Yes, that's correct
Correct, that's how I was doing it, but it wasn't working in th…