Stimulsoft Reports Blank Result
Posted: Fri Feb 19, 2016 2:03 pm
hi i have a wpf program with date range result but when i wanted report result is blank page
this is my query from stimulsoft
And that is my c# code
please someone help

this is my query from stimulsoft
Code: Select all
SELECT Type,Number,Date1,MajlesDate1,RecorderName,SahebeMajles FROM IssRecorder WHERE MajlesDate BETWEEN @From AND @To
Code: Select all
StiReport rep = new StiReport();
rep.Compile();
rep.Dictionary.DataStore.Clear();
rep.Load(System.AppDomain.CurrentDomain.BaseDirectory + @"\\Reports\RecorderReport.mrt");
rep.Dictionary.DataSources["DataSource1"].Parameters["@From"].ParameterValue = _ConvertDate.ToMiladiDate(DateTime.Parse(txtDateFrom.Text));
rep.Dictionary.DataSources["DataSource1"].Parameters["@To"].ParameterValue= _ConvertDate.ToMiladiDate(DateTime.Parse(txtDateTo.Text));
rep.Render();
rep.Show();
please someone help





