Beispiel #1
0
        private void PictureBox13_Click(object sender, EventArgs e)
        {
            FormCapNhatKH frmCapNhat = new FormCapNhatKH(lblMaKH.Text);

            frmCapNhat.ShowDialog();
            XuatThongTin();
        }
Beispiel #2
0
        private void PictureBox13_Click(object sender, EventArgs e)
        {
            if (lblMaKH.Text == "")
            {
                PushNoti noti1 = new PushNoti("Error", "Chọn một khách hàng để sửa!");
                noti1.Width = this.Width;
                this.Controls.Add(noti1);
                noti1.Show();
                noti1.ShowNoti();
                return;
            }
            FormCapNhatKH frmCapNhat = new FormCapNhatKH(lblMaKH.Text);

            frmCapNhat.ShowDialog();
            ShowSelectedRow();
        }