Report Click Events
Hi
I have a working version which is written on Delphi.
I am writing similar one for .net
I have some difficulties to understand Report object properties.
I used on Delphi side Like
FReport.AddFunction('MyOnAfterCalcHeight(Sender: TfrxComponent)');
FReport.OnUserFunction := frxReport1UserFunction;
FReport.OnClickObject := MyReportClickObject;
What can I use for this on definition on .Net?
Is there any tool,something which can be used for this conversion. I have a lot things which is exist on Delphi but not exist on C# such as, "TfrxMasterData"
Thanks for any help.
I have a working version which is written on Delphi.
I am writing similar one for .net
I have some difficulties to understand Report object properties.
I used on Delphi side Like
FReport.AddFunction('MyOnAfterCalcHeight(Sender: TfrxComponent)');
FReport.OnUserFunction := frxReport1UserFunction;
FReport.OnClickObject := MyReportClickObject;
What can I use for this on definition on .Net?
Is there any tool,something which can be used for this conversion. I have a lot things which is exist on Delphi but not exist on C# such as, "TfrxMasterData"
Thanks for any help.
Comments
See the example project in the Demos\C#\UserFunctions folder.
There is no equivalent to Report.OnClickObject, you should handle clicks in the report script. Each report object has Click event.
To convert fr3 report file to the new format, use the converter:
http://www.fast-report.com/pbc_download/files/fr3tofrx.exe
Note this converter does not perform 100% conversion.