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





