private void xemChiTiếtToolStripMenuItem_Click(object sender, EventArgs e) { if (dtGrid.CurrentRow.Cells[0].Value != null) { try{ String ngay = dtGrid.CurrentRow.Cells[0].Value.ToString(); String thang = dtGrid.CurrentRow.Cells[1].Value.ToString(); String nam = dtGrid.CurrentRow.Cells[2].Value.ToString(); String dateString = ngay + "/" + thang + "/" + nam; DateTime dateInput = new DateTime(); try{ dateInput = DateTime.Parse(dateString); Form_BangKeHoaDon frm_BK = new Form_BangKeHoaDon(dateInput); frm_BK.Show(); }catch (Exception ex) { MessageBox.Show("Ngày không hợp lệ"); } } catch (Exception ex) { MessageBox.Show("Vui lòng chọn dòng cần xem chi tiết hóa đơn"); } } }
public Form_BangKeHoaDon(DateTime ngayHdInput) { InitializeComponent(); Current = this; this.ngayHD = ngayHdInput; }
public Form_BangKeHoaDon() { InitializeComponent(); Current = this; }