public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { crTopDepositor rpt = new crTopDepositor(); rpt.Site = this.Site; return(rpt); }
public void Top_Depositor() { try { MySqlCommand cmd = new MySqlCommand(); MySqlDataAdapter da = new MySqlDataAdapter(); DataSet DS = new DataSet(); DataTable DT = new DataTable(); TopDepositor = new crTopDepositor(); TopDepositor_NoData = new crTopDepositorNoData(); GlobalVariable.MyADOConnection = new MySqlConnection(GlobalVariable.dbConnectionString); GlobalVariable.MyADOConnection.Open(); //MySQLQuery = ""; //MySQLQuery = "call sp_Top_Depositor ('" + GlobalVariable.Date_ + "'); "; //MySqlCommand cmd = new MySqlCommand(MySQLQuery, GlobalVariable.MyADOConnection); //cmd.ExecuteScalar(); cmd = new MySqlCommand("sp_dav_Top_Depositor", GlobalVariable.MyADOConnection); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("Date_", GlobalVariable.Date_); cmd.CommandTimeout = 0; da.SelectCommand = cmd; da.Fill(DS, "TABLE"); if (DS.Tables[0].Rows.Count == 0) { TopDepositor_NoData.SetDataSource(DS.Tables[0]); GlobalVariable.MyADOConnection.Close(); crViewer.ReportSource = TopDepositor_NoData; } else { TopDepositor.SetDataSource(DS.Tables[0]); GlobalVariable.MyADOConnection.Close(); crViewer.ReportSource = TopDepositor; } frmReports rep = new frmReports(); rep.Dispose(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }