private void loginUser_Click(object sender, EventArgs e) { try { bool result = manage.loginUser(textBoxUsername.Text.ToLower()); if (!result) { MessageBox.Show("Kullanıcı bulunamadı."); } else { username = textBoxUsername.Text; this.Hide(); main.ShowDialog(); } } catch (FormatException ex) { log.addLog(ex); } }
private void loginUser_Click(object sender, EventArgs e) //login butonuna tıklandığında uygulanan kontrol { try { bool result = manage.loginUser(textBoxUsername.Text.ToLower()); if (!result) { MessageBox.Show("Kullanıcı bulunamadı."); } else { username = textBoxUsername.Text; this.Hide(); main.ShowDialog(); } } catch (FormatException ex) //özel istisna { log.addLog(ex); } }