private void btnSaveConfig_Click(object sender, EventArgs e) { string connectionString = string.Format("Data Source={0};Initial Catalog={1};Persist Security Info=True;User ID={2};Password={3};", cboServername.selectedValue, txtDataname.Text, txtUsername.Text, txtPass.Text); try { SQLHelper helper = new SQLHelper(connectionString); if (helper.IsConnection) { AppSetting setting = new AppSetting(); //MyDllConfig config = new MyDllConfig(); //setting.GetConnectionString("DoAn_QuanLyKhoConnectionString"); setting.SaveConnectionString("BLL_DAL.Properties.Settings.QL_KHOHANGConnectionString", connectionString); using (WaitForm1 frm = new WaitForm1(setting.SaveData)) { frm.ShowDialog(this); } MessageBox.Show("Your connection string has been successfully save.", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information); //frmSetupCompany frmSetup = new frmSetupCompany(); //frmSetup.Show(); //frmLogin frmlogin = new frmLogin(); //frmlogin.Show(); //this.Hide(); Application.Restart(); Environment.Exit(0); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Message", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnLogin_Click(object sender, EventArgs e) { AppSetting setting = new AppSetting(); if (txtUsername.Text == "") { this.Alert("User name không được để trống!", frmNotificationCustom.enmType.Error); } else if (txtPass.Text == "") { this.Alert("Mật khẩu không được để trống!", frmNotificationCustom.enmType.Error); } else if (login.IsvalidUser(txtUsername.Text, txtPass.Text)) { //MessageBox.Show("Đăng nhập thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); using (WaitForm1 frm = new WaitForm1(setting.SaveData)) { frm.ShowDialog(this); } manv = login.getIDUser(txtUsername.Text, txtPass.Text); SaveSettings(); Program.main.MaNhanVien = manv; Program.main.Show(); this.Hide(); } else { this.Alert("Đăng nhập thất bại. Vui lòng kiểm tra lại tài khoản!", frmNotificationCustom.enmType.Error); } }