Exemplo n.º 1
0
 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);
     }
 }
Exemplo n.º 2
0
 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);
     }
 }