My Code Here
private ReportDocument myReportDocument;
string reportPath = "";
crSales objRpt = new crSales();
SalesPrintModel model = new SalesPrintModel();
List<SalesPrintModel> lstSales = new List<SalesPrintModel>();
lstSales = GeneralFunctions.SALESLIST;
reportPath = Application.StartupPath + "\\crSales.rpt";
objRpt.Load(reportPath);
objRpt.SetDataSource(lstSales);
crystalReportViewer1.ReportSource = objRpt;
I Want to print the Sales Report on Role Paper(Dot Matrix Printer). The Size of the paper should set dynamically as per the number of lines to be print.I cant find any solution.