I am working on a c# project. I used stimulsoft to create and show report in my project. I design my report in stimulsoft software and save my report file in ...\bin\debug\reports path.
this is my report design :
this report shows system users.
Now, i want to filter my report in c#. how can i send formul to filter my report result?
this is my code to show report:
StiReport report = new StiReport();
report.Load(System.AppDomain.CurrentDomain.BaseDirectory + "\\reports\\userinfo.mrt");
report.Show();
This example is partially taken from their file
Stimulsoft_NET_FAQ.pdf
First you create a parameter in the query used to extract data from the datasource
then you pass this parameter before calling Show
This example is for an Sql Server Database backend. If you have a different database engine then please use one of the various
StiXXXXXXDatabase
classes available