cosas que faltaban
This commit is contained in:
@@ -49,6 +49,11 @@ namespace Vista
|
||||
if (txtNombre.Text.Length > 50) devolucion += "El nombre no puede superar los 50 chars\n";
|
||||
if (string.IsNullOrEmpty(txtApellido.Text)) devolucion += "El Apellido no puede ser nulo o vacio\n";
|
||||
if (string.IsNullOrEmpty(txtCorreo.Text)) devolucion += "El Correo no puede ser nulo o vacio\n";
|
||||
else if (!txtCorreo.Text.Contains("@"))
|
||||
{
|
||||
devolucion += "El correo debe contener '@'\n";
|
||||
}
|
||||
|
||||
|
||||
if (devolucion == "")
|
||||
{
|
||||
@@ -99,6 +104,11 @@ namespace Vista
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void numCuit_ValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user