Example #1
0
        private void btnBienDong_Click(object sender, EventArgs e)
        {
            if (MaHoSo == 0)
            {
                MessageBox.Show("Cần chọn hồ sơ!");
                return;
            }
            BienDong biendong = new BienDong();

            biendong.MaHoSo = this.MaHoSo;

            this.Hide();
            biendong.ShowDialog();
            this.MaHoSo = biendong.MaHoSo;
            this.Show();
            this.Reload();
        }
Example #2
0
        private void btnBienDong_Click(object sender, EventArgs e)
        {
            if (MaHoSo == 0)
            {
                MessageBox.Show("Cần chọn hồ sơ!");
                return;
            }
            if (phanquyen.KiemTraQuyen(clsStatic.Username, 8) == false)
            {
                MessageBox.Show("Tài khoản không có quyền thực hiện thao tác này.");
                return;
            }
            BienDong biendong = new BienDong();

            biendong.MaHoSo = this.MaHoSo;

            this.Hide();
            biendong.ShowDialog();
            this.MaHoSo = biendong.MaHoSo;
            this.Show();
            this.Reload();
        }