private void Print() { int id = Convert.ToInt32(txtID.Text); DataTable tblRpt = new DataTable(); tblRpt.Clear(); tblRpt = db.readData("SELECT [Order_ID] as 'رقم العملية',[Name] as 'اسم المسؤل عن الصرف' ,[Price] as 'المبلغ',[Date] as 'تاريخ العملية',[To_] as 'تم الصر لــ ',[Reason] as 'السبب' FROM [dbo].[Sanad_sarf] where Order_ID=" + id + "", ""); try { Frm_Print frm = new Frm_Print(); frm.crystalReportViewer1.RefreshReport(); RptSanadSarf rpt = new RptSanadSarf(); rpt.SetDatabaseLogon("", "", @".\SQLEXPRESS", "Sales_System"); rpt.SetDataSource(tblRpt); rpt.SetParameterValue("ID", id); frm.crystalReportViewer1.ReportSource = rpt; System.Drawing.Printing.PrintDocument printDocument = new System.Drawing.Printing.PrintDocument(); rpt.PrintOptions.PrinterName = printDocument.PrinterSettings.PrinterName; //rpt.PrintToPrinter(1, true, 0, 0); frm.ShowDialog(); } catch (Exception) { } }
public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { RptSanadSarf rpt = new RptSanadSarf(); rpt.Site = this.Site; return(rpt); }