Can I put the field in report by witch I search the data? I need to see in report by witch field I search the data and the value of param by witch I search.
Take a look at the AutoSearch demos located in the \RBuilder\Demos\5. AutoSearch\... directory. These examples show how to filter your dataset while the report is running by entering values as search conditions.
If you have a report with autosearch fields (like Nico said) you can print the autosearch field value used to generate the report with a simple Rap function. I simply place in the report a memo (mmoParametri in this example) and in his OnPrint function this call:
procedure mmoParametriOnPrint; begin Report.GetAutoSearchDescriptionLines(mmoParametri.Lines); end;
Comments
Take a look at the AutoSearch demos located in the \RBuilder\Demos\5.
AutoSearch\... directory. These examples show how to filter your dataset
while the report is running by entering values as search conditions.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
you can print the autosearch field value used to generate the report
with a simple Rap function.
I simply place in the report a memo (mmoParametri in this example) and
in his OnPrint function this call:
procedure mmoParametriOnPrint;
begin
Report.GetAutoSearchDescriptionLines(mmoParametri.Lines);
end;
Hope this helps!
Bye
Nicola
Renato Cindori ha scritto: