示例#1
0
文件: frmBCNam.cs 项目: Kyoij/VTVSky
 private void frmBCNam_Load(object sender, EventArgs e)
 {
     this.rpvBCThang.RefreshReport();
     cbNam.DisplayMember = "Name";
     cbNam.ValueMember   = "ID";
     cbNam.DataSource    = BLL_BCThang.GetNams();
 }
示例#2
0
        private void btnBaoCao_Click(object sender, EventArgs e)
        {
            try
            {
                int     thang = Convert.ToInt32(cbThang.SelectedValue);
                int     nam   = Convert.ToInt32(cbNam.SelectedValue);
                DataSet ds    = BLL_BCThang.GetDataSet(thang, nam);
                rpvBCThang.LocalReport.ReportPath = "Report/rpBCThang.rdlc";

                if (ds.Tables[0].Rows.Count > 0)
                {
                    ReportDataSource rds = new ReportDataSource();
                    rds.Name  = "DataSet1";
                    rds.Value = ds.Tables[0];
                    rpvBCThang.LocalReport.DataSources.Clear();
                    rpvBCThang.LocalReport.DataSources.Add(rds);
                    rpvBCThang.RefreshReport();
                    Notification.Show("Hiển thị báo cáo tháng " + thang + " năm " + nam, Status.SUCCESS);
                }
            }
            catch (Exception ex)
            {
                Notification.Show(ex.Message, Status.WARNING);
            }
        }
示例#3
0
 private void cbNam_SelectedIndexChanged(object sender, EventArgs e)
 {
     cbThang.DataSource = BLL_BCThang.GetThangs(Convert.ToInt32(cbNam.SelectedValue));
 }