bool IsValid() { if (tBx_username.Text.Length == 0 || tBx_eMail.Text.Length == 0 || tBx_Passwort.Text.Length == 0 || tBx_Geburtsdatum.Text.Length == 0) { MessageBox.Show("Pflichtfelder nicht ausgefüllt."); return(false); } if (!tBx_Passwort.Text.Equals(tBx_Passwort_Wdh.Text)) { MessageBox.Show("Passwörter stimmen nicht überein"); tBx_Passwort.BackColor = Color.Red; return(false); } if (Dart.IsSpielerVorhanden(tBx_username.Text)) { MessageBox.Show("Username bereits vorhanden."); tBx_username.BackColor = Color.Red; return(false); } if (!IsValidEmail(tBx_eMail.Text)) { MessageBox.Show("Bitte überprüfe deine eingegebene E-Mail-Adresse."); tBx_eMail.BackColor = Color.Red; return(false); } return(true); }
private bool CheckLogin() { String username = tBx_username.Text.ToLower(); String passwort = Dart.HashString(tBx_passwort.Text); if (Dart.IsSpielerVorhanden(username)) { if (Dart.GetSpieler(username).GetPasswd().ToLower().Equals(passwort.ToLower())) { Program.frmMainMenu.lbl_Begruessung.Text = "Hallo " + username; return(true); } else { lbl_falsePaswd.Visible = true; //tBx_passwort.Text = Dart.GetSpieler(username).GetPasswd(); return(false); } } else { lbl_falseUser.Visible = true; return(false); } }
private static Spieler SpielerAuswählen() { bool invalid = true; String name = ""; while (invalid) { try { Console.Clear(); name = Dart.String_Dialog("Welcher Spieler ?", true); if (!Dart.IsSpielerVorhanden(name)) { throw new Exception(); } invalid = false; } catch (Exception e) { Console.WriteLine("Spieler nicht vorhanden"); invalid = true; } } return(Dart.GetSpieler(name)); }
private bool IsUserValid() { for (int i = 0; i < (int)(numUpDown_anzahlSpieler.Value); i++) { if (!Dart.IsSpielerVorhanden(tBArraySpieler[i].Text)) { tBArraySpieler[i].BackColor = Color.Red; return(false); } } return(true); }
private bool IsUserValid(TextBox tBx) { if (!Dart.IsSpielerVorhanden(tBx.Text)) { tBx.BackColor = Color.Red; return(false); } else { tBx.BackColor = Color.Green; } return(true); }