public bool Validar() { bool retorno = true; if (LueCurso.ItemIndex < 0) { errorP1.SetError(LueCurso, "Debe seleccionar un curso"); LueCurso.Focus(); retorno = false; } else { errorP1.SetError(LueCurso, ""); } if (LuePeriodo.ItemIndex < 0) { errorP1.SetError(LuePeriodo, "Debe seleccionar un periodo"); LuePeriodo.Focus(); retorno = false; } else { errorP1.SetError(LuePeriodo, ""); } return(retorno); }
public bool Validar() { bool retorno = true; if (string.IsNullOrEmpty((TxtUsuario.Text))) { errorP1.SetError(TxtUsuario, "Debe ingresar el usuario."); TxtUsuario.Focus(); retorno = false; } else { errorP1.SetError(TxtUsuario, ""); } if (string.IsNullOrEmpty((TxtPassword.Text))) { errorP1.SetError(TxtPassword, "Debe ingresar la contraseña."); TxtPassword.Focus(); retorno = false; } else { errorP1.SetError(TxtPassword, ""); } if (LuePeriodo.ItemIndex < 0) { errorP1.SetError(LuePeriodo, "Debe seleccionar un periodo"); LuePeriodo.Focus(); retorno = false; } else { errorP1.SetError(LuePeriodo, ""); } return(retorno); }