Hi hi hi
If Possible of Write User defined function?
or What is other way of write user defined Function?
I want add Lines of coding in function.
Please provide solution.
Thanks
Regards,
KMarimuthu.
If Possible of Write User defined function?
-
- Posts: 101
- Joined: Wed Jul 26, 2006 8:03 am
- Location: CHENNAI-TN, INDIA
If Possible of Write User defined function?
Marimuthu K
If Possible of Write User defined function?
In first you can place your function in report code:
Code: Select all
namespace Reports
{
public class Report : Stimulsoft.Report.StiReport
{
private string MyFunction()
{
return "123";
}
public Report()
{
this.InitializeComponent();
}
How_to_Add_My_Function