private void btn_dangnhap_Click(object sender, EventArgs e) { try { if (string.IsNullOrEmpty(txt_taikhoan.Text.Trim())) { MessageBox.Show("Không được bỏ trống"); txt_taikhoan.Focus(); return; } if (string.IsNullOrEmpty(txt_matkhau.Text.Trim())) { MessageBox.Show("Không được bỏ trống"); txt_matkhau.Focus(); return; } int kq = kt.Check_Config(); if (kq == 0) { Processlogin(); } if (kq == 1) { MessageBox.Show("Chuỗi cấu hình không tồn tại"); ProcessConfig(); } if (kq == 2) { MessageBox.Show("Chuỗi cấu hình không phù hợp"); //ProcessConfig(); frm_cauhinh frm_cauhinh = new frm_cauhinh(); frm_cauhinh.Show(); } } catch { return; } }
private void ProcessConfig() { frm_cauhinh frm_cauhinh = new frm_cauhinh(); frm_cauhinh.Show(); }