Exemplo n.º 1
0
        MySqlConnection conexion = BDatos.ConexionBD(); //Instancia el objeto MySqlConnection

        #region Validacion
        private bool Validacion()
        {
            bool   ok  = true;
            string nif = txtDni.Text;

            if (txtDni.Text.Length < 9 || txtDni.Text.Length > 9 || LibreriaMetodos.ComprobarCadaValorNif(nif))
            {
                ok = false;
                errPrincpial.SetError(txtDni, "Longitud del DNI incorrecto o Valores incorrectos");
            }
            else
            {
                errPrincpial.SetError(txtDni, "");
            }
            return(ok);
        }
Exemplo n.º 2
0
        private bool ValidarDatos()
        {
            bool   ok  = true;
            string nif = txtNif.Text;


            if (txtNif.Text.Length < 9 || txtNif.Text.Length > 9 || LibreriaMetodos.ComprobarCadaValorNif(nif))
            {
                ok = false;
                errpDatos.SetError(txtNif, "Longitud del DNI incorrecto o Valores incorrectos");
            }
            else
            {
                errpDatos.SetError(txtNif, "");
            }

            if (txtNombre.Text == "")
            {
                ok = false;
                errpDatos.SetError(txtNombre, "Ingresa Nombre");
            }
            else
            {
                errpDatos.SetError(txtNombre, "");
            }

            if (txtApellido.Text == "")
            {
                ok = false;
                errpDatos.SetError(txtApellido, "Ingresa Apellido");
            }
            else
            {
                errpDatos.SetError(txtApellido, "");
            }
            return(ok);
        }