Создание страницы печати с помощью stimulsoft и C#
Сеточное представление, которое у меня есть, фильтруется некоторыми опциями, а затем оно будет передано программе печати под названием "Стимулсофт", но когда фильтр активирован, отфильтрованные записи не отображаются на странице печати. Код показан ниже:
StiReport report = new StiReport(); tbldoreTableAdapter.Fill(doredataset.tbldore); tbl_masolTableAdapter.Fill(doredataset.tbl_masol); report.Load("Report.mrt"); report.RegData("DataSourc1", radGridView1.DataSource); report.RegData(doredataset.tbldore); report.RegData(doredataset.tbl_masol); report.Show();
Что я уже пробовал:
The grid-view that I have is filtered by some options and then it will be passed to a print program named "Stimulsoft" but when the filter is activated, the filtered records are not shown in the print page. The code is shown below: