// Método que verifica si los campos tienen información private bool ValidarCampos() { bool Regresar = true; try { // Verifica que el campo Usuario tenga información if (EDT_Usuario.TextLength == 0 || EDT_Usuario.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Usuario"); EDT_Usuario.Focus(); Regresar = false; } // Verifica que el campo Nombre tenga información if (EDT_Nombre.TextLength == 0 || EDT_Nombre.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Nombre"); EDT_Nombre.Focus(); Regresar = false; } // Verifica que el campo ApellidoP tenga información if (EDT_ApellidoP.TextLength == 0 || EDT_ApellidoP.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Ap. Paterno"); EDT_ApellidoP.Focus(); Regresar = false; } // Verifica que el campo ApellidoM tenga información if (EDT_ApellidoM.TextLength == 0 || EDT_ApellidoM.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Ap. Materno"); EDT_ApellidoM.Focus(); Regresar = false; } // VErifica que el campo Password tenga información if (EDT_Password.TextLength == 0 || EDT_Password.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Contraseña"); EDT_Password.Focus(); Regresar = false; } // Verifica que el combo TipoUsuario tenga información if (COMBO_TipoUsuario.SelectedIndex == -1) { // Marca error y te regresa al campo Glo.Mensajes(3, "Tipo"); COMBO_TipoUsuario.Focus(); Regresar = false; } } catch (Exception ex) { Glo.Mensajes(10, ex.Message); Regresar = false; } return(Regresar); }
// Método ValidarCampos private bool ValidarCampos() { bool Regresar = true; try { // Verifica que el campo Usuario tenga información if (EDT_Nombre.TextLength == 0 || EDT_Nombre.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Nombre"); EDT_Nombre.Focus(); Regresar = false; } // Verifica que el campo ApellidoP tenga información if (EDT_ApellidoP.TextLength == 0 || EDT_ApellidoP.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Ap. Paterno"); EDT_ApellidoP.Focus(); Regresar = false; } // Verifica que el campo ApellidoM tenga información if (EDT_ApellidoM.TextLength == 0 || EDT_ApellidoM.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Ap. Materno"); EDT_ApellidoM.Focus(); Regresar = false; } // Verifica que el campo Edad tenga información if (EDT_Edad.TextLength == 0 || EDT_Edad.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Edad"); EDT_Edad.Focus(); Regresar = false; } // Verifica que el campo Teléfono tenga información if (EDT_Telefono.TextLength == 0 || EDT_Telefono.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Teléfono"); EDT_Telefono.Focus(); Regresar = false; } // Verifica que el campo TeléfonoEm tenga información if (EDT_TelefonoEm.TextLength == 0 || EDT_TelefonoEm.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Tel. Emergencia"); EDT_TelefonoEm.Focus(); Regresar = false; } // Verifica que el campo Dirección tenga información if (EDT_Direccion.TextLength == 0 || EDT_Direccion.Text == "") { // Marca error y te regresa al campo Glo.Mensajes(3, "Dirección"); EDT_Direccion.Focus(); Regresar = false; } // Verifica que el combo Sexo tenga información if (COMBO_Sexo.SelectedIndex == -1) { // Marca error y te regresa al campo Glo.Mensajes(3, "Sexo"); COMBO_Sexo.Focus(); Regresar = false; } //// Verifica que el combo TipoSangre tenga información //if (COMBO_TipoSangre.SelectedIndex == -1) //{ // // Marca error y te regresa al campo // Glo.Mensajes(3, "Tipo Sangre"); // COMBO_TipoSangre.Focus(); // Regresar = false; //} } catch (Exception ex) { Glo.Mensajes(10, ex.Message); Regresar = false; } return(Regresar); }