Ejemplo n.º 1
0
        private void btnLichSuBienDong_Click(object sender, EventArgs e)
        {
            LichSu lichsu = new LichSu();

            lichsu.MaHoSo = this.MaHoSo;

            this.Hide();
            lichsu.ShowDialog();

            this.Show();
        }
Ejemplo n.º 2
0
        private void btnLichSuBienDong_Click(object sender, EventArgs e)
        {
            if (phanquyen.KiemTraQuyen(clsStatic.Username, 14) == false)
            {
                MessageBox.Show("Tài khoản không có quyền thực hiện thao tác này.");
                return;
            }

            LichSu lichsu = new LichSu();

            lichsu.MaHoSo = this.MaHoSo;

            this.Hide();
            lichsu.ShowDialog();

            this.Show();
        }