private void dtGVHoaDon_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { string mahd; if (MessageBox.Show("Bạn có muốn hiển thị thông tin chi tiết?", "Xác nhận", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { mahd = dtGVHoaDon.CurrentRow.Cells["MaHD"].Value.ToString(); FormTaoHoaDon frm = new FormTaoHoaDon(); frm.txtMaHD.Text = mahd; frm.StartPosition = FormStartPosition.CenterParent; frm.ShowDialog(); } }
private void mnuHoaDonBan_Click(object sender, EventArgs e) { FormTaoHoaDon frmHoaDon = new FormTaoHoaDon(); frmHoaDon.ShowDialog(); }