private void Frm_KetNoi_Load(object sender, EventArgs e) { bd = new BLL_HeThong(cls_Main.pathconnect, ref cls_Main.serverName, ref cls_Main.database, ref cls_Main.uid, ref cls_Main.pass); txtservername.Text = cls_Main.serverName; txtdatabasename.Text = cls_Main.database; txtusername.Text = cls_Main.uid; txtpassword.Text = cls_Main.pass; }
private void btnluuketnoi_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { try { if (!string.IsNullOrEmpty(txtservername.Text)) { if (!string.IsNullOrEmpty(txtdatabasename.Text)) { if (!string.IsNullOrEmpty(txtusername.Text)) { if (!string.IsNullOrEmpty(txtpassword.Text)) { bd.ghichuoiketnoi(cls_Main.pathconnect, txtservername.Text, txtdatabasename.Text, txtusername.Text, txtpassword.Text); MessageBox.Show("Đã lưu chuỗi kết nối", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); bd = new BLL_HeThong(cls_Main.pathconnect, ref cls_Main.serverName, ref cls_Main.database, ref cls_Main.uid, ref cls_Main.pass); } else { MessageBox.Show("Chưa nhập Password", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); txtpassword.Focus(); } } else { MessageBox.Show("Chưa nhập Username", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); txtusername.Focus(); } } else { MessageBox.Show("Chưa nhập Databasename", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); txtdatabasename.Focus(); } } else { MessageBox.Show("Chưa nhập Servername", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); txtservername.Focus(); } } catch (Exception ex) { MessageBox.Show("Lỗi trong quá trình lưu file!\n Hãy kiểm tra lại quyền truy cập trong thư mục cài đặt\n" + ex.Message, "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void Frm_DoiMatKhau_Load(object sender, EventArgs e) { bd = new BLL_HeThong(cls_Main.pathconnect, ref cls_Main.serverName, ref cls_Main.database, ref cls_Main.uid, ref cls_Main.pass); groupnguoidung.Text = "Người dùng hiện tại: " + cls_Main.tenDangNhap; if (cls_Main.maTaiKhoan != "1") { lblchonnguoidung.Visible = false; cbonguoidung.Visible = false; btncaplaimatkhau.Visibility = DevExpress.XtraBars.BarItemVisibility.Never; } else { loadnguoidung(); lblchonnguoidung.Visible = true; cbonguoidung.Visible = true; btncaplaimatkhau.Visibility = DevExpress.XtraBars.BarItemVisibility.Always; } }