public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { SPR_RFQCompleted rpt = new SPR_RFQCompleted(); rpt.Site = this.Site; return(rpt); }
private void SPR_RFQCompleted_PrintScreen_Load(object sender, EventArgs e) { //---MYSQL CONNECTION connection = new MySqlConnection(ConnectionStringManager.reicpomsConnection.ConnectionString); connection.Open(); //---SELECT Statements reicpomsds = new reicpomsDataSet(); //Data from RFQ Suppliers string selectAllSuppliers = string.Format("SELECT DISTINCT supplier_t.* " + "FROM supplier_t, rfq_t " + "WHERE pq_no IS NOT NULL " + "AND rfq_t.supplier_id = supplier_t.supplier_id " + "ORDER BY rfq_no DESC;"); adapter = new MySqlDataAdapter(selectAllSuppliers, connection); adapter.Fill(reicpomsds, "supplier_t"); //Data from RFQ Customers string selectAllCustomers = string.Format("SELECT DISTINCT customer_t.* " + "FROM customer_t, rfq_t " + "WHERE pq_no IS NOT NULL " + "AND rfq_t.customer_id = customer_t.customer_id " + "ORDER BY rfq_no DESC;"); adapter = new MySqlDataAdapter(selectAllCustomers, connection); adapter.Fill(reicpomsds, "customer_t"); //Data from rfq_t string selectPendingRFQ = "SELECT * FROM rfq_t WHERE pq_no IS NOT NULL ORDER BY rfq_no DESC;"; adapter = new MySqlDataAdapter(selectPendingRFQ, connection); adapter.Fill(reicpomsds, "rfq_t"); connection.Close(); //---INSTANTIATE CRYSTAL REPORT SPR_RFQCompleted rfqc = new SPR_RFQCompleted(); rfqc.Load(); rfqc.SetDataSource(reicpomsds); //Added a code snippet in app.config file. If else, will result to a System.IOFileNotFoundException error. //---EXPORT TO PDF string currentDateTime = DateTime.Now.ToString("yyyy-MM-dd hhmmtt"); string filePath = "C:\\REIC Files\\Sales Performance Report & Summary\\Requests for Price Quotation - Completed\\Completed RFQ (" + currentDateTime + ").pdf"; rfqc.ExportToDisk(ExportFormatType.PortableDocFormat, filePath); MessageBox.Show("A PDF file of this report on completed requests for price quotation can be found in C:\\REIC Files\\Sales Performance Report & Summary\\\nRequests for Price Quotation - Completed."); CrystalReportViewer.ReportSource = rfqc; //Display SPR_RFQPending.rpt in the print preview }