Ejemplo n.º 1
0
        private void btthoat_Click(object sender, EventArgs e)
        {
            this.Hide();
            QuanLyBanXe_View qlbxv = new QuanLyBanXe_View();

            qlbxv.Show();
        }
Ejemplo n.º 2
0
 private void btthoat_Click(object sender, EventArgs e)
 {
     if (DialogResult.Yes == MessageBox.Show("Bạn có chắc muốn thoát?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question))
     {
         this.Hide();
         QuanLyBanXe_View qlbx = new QuanLyBanXe_View();
         qlbx.Show();
     }
 }
Ejemplo n.º 3
0
        private void btdoimk_Click(object sender, EventArgs e)
        {
            string c, b;

            try
            {
                if (txtmkcu.Text == "")
                {
                    lbstatus.ForeColor = Color.Red;
                    lbstatus.Text      = "Bạn chưa nhập mật khẩu cũ";
                }
                else if (txtmkmoi.Text == "")
                {
                    lbstatus.ForeColor = Color.Red;
                    lbstatus.Text      = "Bạn chưa nhập mật khẩu mới";
                }
                else if (txtmkmoi1.Text == "")
                {
                    lbstatus.ForeColor = Color.Red;
                    lbstatus.Text      = "Bạn chưa nhập lại mật khẩu mới";
                }
                else
                {
                    int a = nvbus.KiemTraPass(txtmkcu.Text);
                    if (a <= 0)
                    {
                        MessageBox.Show("Mật khẩu cũ của bạn không đúng!", "Thông báo");
                    }
                    else
                    {
                        if (txtmkmoi.Text != txtmkmoi1.Text)
                        {
                            MessageBox.Show("Mật khẩu mới và nhập lại mật khẩu mới không trùng nhau!", "Thông báo");
                        }
                        else
                        {
                            c = txtmkmoi.Text;
                            b = txtmkcu.Text;
                            nvbus.SuaMatKhau(c, b);
                            MessageBox.Show("Đỗi mật khẩu thành công!", "Thông báo");
                            this.Hide();
                            QuanLyBanXe_View qlbx = new QuanLyBanXe_View();
                            qlbx.Show();
                        }
                    }
                }
            }
            catch {
                MessageBox.Show("Không thế sửa", "Thông báo");
            }
        }