rbuser
Comments
-
Wouter,
Would you mind sharing some hints on how you did this? I think I have the
same problem. I've got two dataviews, and both of them should search within
a daterange, and I want them to use the same daterange (the user only … -
Jim,
Thanks for the help. I was mistaken about the AutoSearchFieldCount.
Everything works like it should be.
So in the OnGetAutoSearchValues, you can set every value you want. I don't
even need to write any Delphi or pass… -
Thanks Jim your sample looks great. I will give it a wirl in my app.
Cheers,
-
Thanks Jim.
1) So will you be posting a RAP demo soon?
2) It is also appealing to be able in general to be able to calculate
the amount of space from the end of one band (after it has finished)
and the start of a pre-… -
Thanks Jim for the suggestions:
1) Pagestyle is appealing but I can only have the lines where other
bands have not printed (even if it is white space). In my test the
lines show up as a background. I guess it would need a
Hi Bernd,
the tabs should disappear after setting 'Edit SQL as Text' to 'True'.
regards,
Chris Ueberall;
It looks, as if there is a problem with the designer, if you change the
SQL-Text either by code as Stasa wants or at design time.
Try this:
- Open the report in the designer
- Create a new SQL-Statement (remeber to ha…Hi Jerinic,
you can't assign a 'TStringList' to 'String'. You could assign 'stSQL.Text' instead.
IIRC you have to use property 'aSQL.MagicSQL(.Text)' not 'SQL', but I may wrong in this point. Don't forget to set property 'aSQL.EditSQ…Thank you. You really helped me a lot.
By the way, is there any page where I could browse the existing tip files?
Hi Blake,
this happens because 'Autosize' is enabled, works as designed. It would be nice to have the option to not autosize any report component during design time which has 'Autosize' enabled.
regards,
Chris Uebera…Look at some of the AutoSearch examples in your RBuilder\Demos\
There are examples of creating Date AutoSearch fields and examples of
changing the date range on the fly.
Vince
Hi,
I have defined…1. yup i dont want to connect the report that it is located in to the same
datapipeline as the crosstab. the problem is when i do so all the crosstab
in different width that makes the 1 report seem like containing 4 different
report r…Thanks Jim.
I am not loading a template.
These are all the events I have exposed at the report level
AfterAutoSearchDialogCreate
BeforeAutoSearchDialogCreate
OnAutoSearchDialogClose
OnGetAutoSearchValues
OnEndColumn
OnEn…Thanks Jim, unfortunately I do not feel that the main thrust of my question
is answered. Let us compare the code and I think you will see what I mean
JB- lCodeModule := raGetCodeModule(FReport);
CR- CodeMod:=TraCodeModule.Crea…For my understanding:
if i get the absolute pagenumber from the first pass, and then i set the
height of the footer, it might be possible, that i get more pages, is this
right?
what i often need is a possibility to change f…Sorry, I have forgotten a d?tail : When I affect the Visible and Height
property to the FooterBand, I must Know the total Number pages.
If I place my code in Report.BeforePrint event, the total number page isn't
disponible.
Hi,
ok, but the the report who's created dynamically, can I do "saveToFile" with
this report ?
Here is the (reportVerso)..
thanx a lot
bye
Thanks Chris and Jim,
I understand the need to get the correct report instance.
Other threaded environments provide simple access to the thread
instance of the module. For example with IntraWeb you would say (from
th…Hi Rick,
1) AFAIK, you have to pass a reference. If there is only one report shown per time then you could log the reference. But I don't know if there has been some changes in 7.02.
2) the report owner should be 'TmyEndUserSolution'…Hi Darryl,
there is no code available for unit 'raCodMod' from digital-metaphors.
If you don't need RAP then I would delete the reference from the uses clause.
If there is a chance to use the original 'TStrings' class take it!Andy,
place the pipeline on your end-user datamodule and set property 'Visible' to 'True'.
HTH,
Chris Ueberall;
Thanks Chris
Very nearly there, this works OK, but now if I drop a new JitPipeline onto a
form it is no longer selectable in the end user
designer, I don't remember doing anything specific with the first form, it
just appeared as…Andy,
use the event 'OnGetFieldValue'.
function TmyDataModule.myPipelineGetFieldValue(aFieldName: String): Variant;
begin
if aFieldName = 'myFieldName' then begin
Result := Edit1.Text;
end
e…Thanks Chris, that looks like it'll do the job, just one small thing. I have
created a couple of fields but am struggling to assign values at run time. I
want make the value of the first field to Edit1.Text.
Thanks
An…Hi Andy,
use a JITPipeline.
regards,
Chris Ueberall;
OK please be patient with these elementary questions, but I have not really
found anything in the tutorials or examples yet that have gotten me past
this point yet.
I added a variable in my summary band and put the following in …Thanks, for some reason I could not connect to this NG last week so I just
saw your response. I'll try it today or tomorrow and let you know if I have
any remaining questions.
Thanks,
Carolyn
Thanks for your reply. I have not looked at the example yet because I would
like to understand the "easiest way" first. I am fairly new to Delphi and
Report Builder (like what a see and know so far) so here are some (probably)
simpl…