private void btn_login_Click(object sender, EventArgs e) { try { cnn.Open(); string md5password = MD5eDonustur(txt_password.Text); string sql = "SELECT * FROM tbl_user WHERE user_password='******'and user_name='" + txt_user_name.Text + "'"; adapter = new SqlDataAdapter(sql, cnn); adapter.Fill(table); if (table.Rows.Count <= 0) { MessageBox.Show("Şifre veya şifre hatalı"); cnn.Close(); } else { this.Hide(); frm_main frm1 = new frm_main(); frm1.ShowDialog(); this.Close(); } } catch (Exception ex) { error.write_error(ex); MessageBox.Show("hata : " + ex.Message); if (cnn.State == ConnectionState.Open) { cnn.Close(); } } }
private void Processlogin() { LoginResult result; result = kt.Check_User(txt_taikhoan.Text, txt_matkhau.Text); if (result == LoginResult.Invalid) { MessageBox.Show("Sai tên đăng nhập hoặc mật khẩu!"); return; } else if (result == LoginResult.Disable) { MessageBox.Show("Tài khoản đã bị khóa"); return; } else { // đúng tài khoản và mật khẩu frm_main main = new frm_main(); main.Tendn = txt_taikhoan.Text; main.MatKhau = txt_matkhau.Text; //Visible = false; main.ShowDialog(); //Program.frm_nain.ShowDialog(); } }
public void NewScreenshot(SnippingTool.ScreenshotType type) { Image bmp = SnippingTool.Snip(type); if (bmp != null) { frm_main newFrmMain = new frm_main(bmp, trayIcon); newFrmMain.ShowDialog(); } }