Beispiel #1
0
 private bool ValidaCampos()
 {
     if (TxtRaca.Text == string.Empty)
     {
         MessageBox.Show("O campo deve ser preenchido", "Sistema Friend of the Owner", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         TxtRaca.Select();
         return(false);
     }
     return(true);
 }