private bool Validar()
        {
            bool paso = true;
            errorProvider1.Clear();

            if (DescripciontextBox.Text == string.Empty)
            {
                errorProvider1.SetError(DescripciontextBox, "El campo Descripcion no puede estar vacío");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (RolesBLL.ExisteDescripcion(DescripciontextBox.Text, (int)idnumericUpDown.Value))
            {
                errorProvider1.SetError(DescripciontextBox, "Este Rol ya existe");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (PermisocomboBox.Text == string.Empty)
            {
                errorProvider1.SetError(PermisocomboBox, "Debe seleccionar un Id");
                PermisocomboBox.Focus();
                paso = false;
            }
            if (this.Detalles.Count == 0)
            {
                errorProvider1.SetError(DetalledataGridView, "Debe agregar un Permiso");
                PermisocomboBox.Focus();
                paso = false;
            }

            return paso;
        }
        private bool Validar()
        {
            bool paso = true;

            if (DescripciontextBox.Text == string.Empty)
            {
                ErrorProvider.SetError(DescripciontextBox, "Este Campo no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (RolesBLL.ExisteDescripcion(DescripciontextBox.Text, (int)IdnumericUpDown.Value))
            {
                ErrorProvider.SetError(DescripciontextBox, "Esta Descripcion ya existe");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (PermisocomboBox.Text == string.Empty)
            {
                ErrorProvider.SetError(PermisocomboBox, "Debe seleccionar un Permiso Id");
                PermisocomboBox.Focus();
                paso = false;
            }
            if (this.Detalle.Count == 0)
            {
                ErrorProvider.SetError(DetallesdataGridView, "Debe agregar un Permiso");
                DetallesdataGridView.Focus();
                paso = false;
            }

            return(paso);
        }
        private bool Validar()
        {
            bool paso = true;

            errorProvider1.Clear();

            if (DescripciontextBox.Text == String.Empty)
            {
                errorProvider1.SetError(DescripciontextBox, "El campo Nombre no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (CostotextBox.Text == String.Empty)
            {
                errorProvider1.SetError(CostotextBox, "El campo Costo no puede estar vacio");
                CostotextBox.Focus();
                paso = false;
            }
            if (PreciotextBox.Text == String.Empty)
            {
                errorProvider1.SetError(PreciotextBox, "El campo Precio no puede estar vacio");
                PreciotextBox.Focus();
                paso = false;
            }
            if (FechadateTimePicker.Value > DateTime.Now)
            {
                errorProvider1.SetError(FechadateTimePicker, "La fecha no puede ser Mayor que la de hoy");
                paso = false;
            }
            return(paso);
        }
Beispiel #4
0
        private bool Validar()
        {
            bool paso = true;

            if (DescripciontextBox.Text == string.Empty)
            {
                ErroreserrorProvider.SetError(DescripciontextBox, "Este campo no puede quedar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            if (RolesBLL.ExisteDescripcion(DescripciontextBox.Text))
            {
                ErroreserrorProvider.SetError(DescripciontextBox, "Esta descripcion ya existe en la base de datos");
                DescripciontextBox.Focus();
                paso = false;
            }

            if (PermisoscomboBox.Text == string.Empty)
            {
                ErroreserrorProvider.SetError(PermisoscomboBox, "Debe seleccion un Id");
                PermisoscomboBox.Focus();
                paso = false;
            }

            if (this.Detalle.Count == 0)
            {
                ErroreserrorProvider.SetError(DetalledataGridView, "Es necesario agregar un permis");
                DetalledataGridView.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #5
0
        private bool Validar()
        {
            bool paso = true;

            if (string.IsNullOrWhiteSpace(DescripciontextBox.Text))
            {
                ErrorProvider.SetError(DescripciontextBox, "Este campo no puede estar vacío");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (ProyectosBLL.ExisteProyecto(DescripciontextBox.Text, (int)IdnumericUpDown.Value))
            {
                ErrorProvider.SetError(DescripciontextBox, "Este Proyecto ya existe");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (string.IsNullOrWhiteSpace(TareacomboBox.Text))
            {
                ErrorProvider.SetError(TareacomboBox, "Debe seleccionar una Tarea");
                TareacomboBox.Focus();
                paso = false;
            }
            if (this.Detalle.Count == 0)
            {
                ErrorProvider.SetError(DetallesdataGridView, "Debe agregar una Tarea");
                DetallesdataGridView.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #6
0
        private bool Validar()
        {
            bool paso = true;

            MyErrorProvider.Clear();

            try
            {
                if (TiposAnalisisBLL.Duplicado(DescripciontextBox.Text))
                {
                    paso = false;
                    MyErrorProvider.SetError(DescripciontextBox, "La descripcion ya esta registrada");
                }
            }
            catch (Exception)
            {
                throw;
            }

            if (DescripciontextBox.Text == string.Empty)
            {
                MyErrorProvider.SetError(DescripciontextBox, "El campo Descripcion no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
        public bool Validar()
        {
            bool paso = true;

            ErrorProvider.Clear();
            if (string.IsNullOrWhiteSpace(DescripciontextBox.Text))
            {
                ErrorProvider.SetError(DescripciontextBox, "No puede guardar espacios en blanco");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (DescripciontextBox.Text == string.Empty)
            {
                ErrorProvider.SetError(DescripciontextBox, "El campo descroipcion no puede esta vacio");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (CreditonumericUpDown.Value < 0)
            {
                ErrorProvider.SetError(CreditonumericUpDown, "No puede existir credito menor que 0");
                CreditonumericUpDown.Focus();
                paso = false;
            }
            return(paso);
        }
        private bool Validar()
        {
            bool paso = true;

            MyErrorProvider.Clear();

            if (DescripciontextBox.Text == string.Empty)
            {
                MyErrorProvider.SetError(DescripciontextBox, "El campo Descripcion no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            if (CreditosnumericUpDown.Value == 0)
            {
                MyErrorProvider.SetError(CreditosnumericUpDown, "El campo Creditos no puede ser 0");
                CreditosnumericUpDown.Focus();
                paso = false;
            }
            if (NoDuplicado(DescripciontextBox.Text))
            {
                MyErrorProvider.SetError(DescripciontextBox, "No se permite tener materias con el mismo nombre");
                paso = false;
            }


            return(paso);
        }
        private bool ValidarGuardar()
        {
            bool paso = true;

            errorProvider.Clear();

            if (DescripciontextBox.Text == string.Empty)
            {
                errorProvider.SetError(DescripciontextBox, "El Campo no puede estar vacio.");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (CostotextBox.Text == string.Empty)
            {
                errorProvider.SetError(CostotextBox, "El Campo no puede estar vacio.");
                CostotextBox.Focus();
                paso = false;
            }
            if (ExistenciatextBox.Text == string.Empty)
            {
                errorProvider.SetError(ExistenciatextBox, "El Campo no puede estar vacio.");
                ExistenciatextBox.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #10
0
        private bool Validar()
        {
            bool paso = true;

            if (NombretextBox.Text.Trim() == string.Empty || DescripciontextBox.Text.Trim() == string.Empty || SiglatextBox.Text.Trim() == string.Empty || TipotextBox.Text.Trim() == string.Empty)
            {
                if (NombretextBox.Text.Trim() == string.Empty)
                {
                    errorProvider1.SetError(NombretextBox, "No dejar campo vacio");
                    NombretextBox.Focus();
                }
                if (DescripciontextBox.Text.Trim() == string.Empty)
                {
                    errorProvider1.SetError(DescripciontextBox, "No dejar campo vacio");
                    DescripciontextBox.Focus();
                }
                if (SiglatextBox.Text.Trim() == string.Empty)
                {
                    errorProvider1.SetError(SiglatextBox, "No dejar campo vacio");
                    DescripciontextBox.Focus();
                }
                if (TipotextBox.Text.Trim() == string.Empty)
                {
                    errorProvider1.SetError(TipotextBox, "No dejar campo vacio");
                }

                paso = false;
            }
            return(paso);
        }
Beispiel #11
0
        private bool ValidarGuardar()
        {
            bool paso = true;

            MyErrorProvider.Clear();

            if (DescripciontextBox.Text == string.Empty)
            {
                MyErrorProvider.SetError(DescripciontextBox, "El Campo no puede estar vacio.");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (CostonumericUpDown.Value == 0)
            {
                MyErrorProvider.SetError(CostonumericUpDown, "El Campo no puede ser 0");
                CostonumericUpDown.Focus();
                paso = false;
            }
            if (ExistencianumericUpDown.Value == 0)
            {
                MyErrorProvider.SetError(ExistencianumericUpDown, "El Campo no puede ser 0");
                ExistencianumericUpDown.Focus();
                paso = false;
            }
            if (Repeticion(DescripciontextBox.Text))
            {
                MessageBox.Show("No se puede ingresar un producto ya creado");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #12
0
        private bool Validar()
        {
            bool paso = true;

            MyErrorProvider.Clear();

            if (String.IsNullOrWhiteSpace(DescripciontextBox.Text.Trim()))
            {
                MyErrorProvider.SetError(DescripciontextBox, "Este campo no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (RepetidosNo(DescripciontextBox.Text))
            {
                MessageBox.Show("Ya existe un producto con ese nombre");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (CostoumericUpDown.Value == 0)
            {
                MyErrorProvider.SetError(CostoumericUpDown, "Este campo no bebe ser 0");
                CostoumericUpDown.Focus();
                paso = false;
            }
            if (ExistenciaNumericUpDown.Value == 0)
            {
                MyErrorProvider.SetError(ExistenciaNumericUpDown, "Este campo no bebe ser 0");
                ExistenciaNumericUpDown.Focus();
                paso = false;
            }
            return(paso);
        }
Beispiel #13
0
 private void DescripciontextBox_KeyPress(object sender, KeyPressEventArgs e)
 {
     Myerror.Clear();
     if (!(char.IsLetter(e.KeyChar)) && (e.KeyChar != (char)Keys.Back))
     {
         Myerror.SetError(DescripciontextBox, "Solo se permiten letras");
         DescripciontextBox.Focus();
         e.Handled = true;
         return;
     }
 }
Beispiel #14
0
        private bool GuardarValidar()
        {
            bool paso = true;

            if (string.IsNullOrEmpty(DescripciontextBox.Text))
            {
                errorProviderTipo.SetError(DescripciontextBox, "El Campo Descripcion No puede Estar Vacio!");
                DescripciontextBox.Focus();
                paso = false;
            }
            return(paso);
        }
        public bool Validar()
        {
            bool paso = true;

            if (DescripciontextBox.Text == string.Empty)
            {
                ErroreserrorProvider.SetError(DescripciontextBox, "Este campo no puede quedar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #16
0
        private bool Validar()
        {
            errorProvider.Clear();
            bool paso = true;

            if (string.IsNullOrWhiteSpace(DescripciontextBox.Text))
            {
                errorProvider.SetError(DescripciontextBox, "El campo descripcion no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #17
0
        private bool Validar()
        {
            bool paso = true;

            MyerrorProvider.Clear();

            if (DescripciontextBox.Text == string.Empty)
            {
                MyerrorProvider.SetError(DescripciontextBox, " Debes poner una descripcion");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
        private bool Validar()
        {
            bool paso = true;

            errorProvider.Clear();

            if (DescripciontextBox.Text == string.Empty)
            {
                errorProvider.SetError(DescripciontextBox, "El campo Descripción no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #19
0
        private bool Validar()
        {
            bool realizado = true;

            errorProvider1.Clear();

            if (string.IsNullOrWhiteSpace(DescripciontextBox.Text))
            {
                errorProvider1.SetError(DescripciontextBox, "EL CAMPO NOMBRE NO PUEDE ESTAR VACIO");
                DescripciontextBox.Focus();
                realizado = false;
            }

            return(realizado);
        }
        private bool Validar()
        {
            bool paso = true;

            errorProvider.Clear();
            if (string.IsNullOrWhiteSpace(DescripciontextBox.Text))
            {
                errorProvider.SetError(DescripciontextBox, "El campo Descripcion no puede estar Vacio.");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (this.Detalle.Count == 0)
            {
                errorProvider.SetError(CuentascomboBox, "Debe Agregar una o mas Cuentas");
                CuentascomboBox.Focus();
                paso = false;
            }
            return(paso);
        }
Beispiel #21
0
        private bool Validar()
        {
            bool paso = true;

            if (DescripciontextBox.Text == string.Empty)
            {
                MessageBox.Show("Este campo no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (NoRepetido(DescripciontextBox.Text))
            {
                MessageBox.Show("Este campo no puede estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
        public bool Validar()
        {
            bool paso = true;

            if (String.IsNullOrEmpty(DescripciontextBox.Text))
            {
                MessageBox.Show("La descripcion no puede estar vacia");
                DescripciontextBox.Focus();
                paso = false;
            }

            if (CostonumericUpDown.Value == 0)
            {
                MessageBox.Show("El costo no puede estar vacio");
                CostonumericUpDown.Focus();
                paso = false;
            }
            return(paso);
        }
Beispiel #23
0
        private bool Validar()
        {
            bool paso = true;

            if (DescripciontextBox.Text == string.Empty)
            {
                MessageBox.Show("La descripcion no puede estar vacia");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (UbicacionesClase.PalabrasNoIguales(DescripciontextBox.Text))
            {
                MessageBox.Show("Los nombre no pueden ser iguales");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
        private bool ValidarCampos()
        {
            bool paso = true;

            if (DescripciontextBox.Text == string.Empty)
            {
                MessageBox.Show("La descripcion no puede estar vacia");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (NoDuplicado(DescripciontextBox.Text))
            {
                MessageBox.Show("Los Nombres de Analisis no pueden ser iguales");
                DescripciontextBox.Focus();
                paso = false;
            }

            return(paso);
        }
        private bool Validar()
        {
            bool paso = true;

            MyerrorProvider.Clear();


            if (DescripciontextBox.Text == string.Empty)
            {
                MyerrorProvider.SetError(DescripciontextBox, " Debes poner una descripcion");
                DescripciontextBox.Focus();
                paso = false;
            }

            if (ExistenciatextBox.Text == "0")
            {
                MyerrorProvider.SetError(ExistenciatextBox, "Existencia no puede ser 0");
                ExistenciatextBox.Focus();
                paso = false;
            }

            if (ExistenciatextBox.Text == string.Empty)
            {
                MyerrorProvider.SetError(ExistenciatextBox, "Existencia no puede estar vacia");
                ExistenciatextBox.Focus();
                paso = false;
            }
            if (CostotextBox.Text == "0")
            {
                MyerrorProvider.SetError(CostotextBox, "Costo no puede ser 0");
                CostotextBox.Focus();
                paso = false;
            }

            if (CostotextBox.Text == string.Empty)
            {
                MyerrorProvider.SetError(CostotextBox, "Costo no puede estar vacio");
                CostotextBox.Focus();
                paso = false;
            }
            return(paso);
        }
Beispiel #26
0
        private bool ValidarGuardar()
        {
            bool paso = true;

            MyErrorProvider.Clear();

            if (DescripciontextBox.Text == string.Empty)
            {
                MyErrorProvider.SetError(DescripciontextBox, "El Campo no puede estar vacio.");
                DescripciontextBox.Focus();
                paso = false;
            }
            if (Repeticion(DescripciontextBox.Text))
            {
                MessageBox.Show("No se puede ingresar una ubicacion que ya existe");
                DescripciontextBox.Focus();
                paso = false;
            }
            return(paso);
        }
        private bool Validar()
        {
            bool paso = true;

            if (string.IsNullOrEmpty(DescripciontextBox.Text))
            {
                MyerrorProvider.SetError(DescripciontextBox, "Tienes que llenar el nombre");
                DescripciontextBox.Focus();
                paso = false;
            }

            if (CreditosnumericUpDown.Value == 0)
            {
                MyerrorProvider.SetError(CreditosnumericUpDown, "Una materia no puede tener cero creditos");
                CreditosnumericUpDown.Focus();
                paso = false;
            }

            return(paso);
        }
Beispiel #28
0
        private void Agragar_Click(object sender, EventArgs e)
        {
            if (CuentadataGridView.DataSource != null)
            {
                this.Detalle = (List <Cuentas>)CuentadataGridView.DataSource;
            }
            this.Detalle.Add(
                new Cuentas
                (
                    CuentaID: 0,
                    Descripcion: TipoCuentascomboBox.Text,
                    Tipoid: (int)IDnumericUpDown.Value,
                    Monto: (double)MontonumericUpDown.Value

                )
                );
            CargarGrid();
            DescripciontextBox.Focus();
            DescripciontextBox.Clear();
        }
Beispiel #29
0
        private bool GuardarValidar()
        {
            bool paso = true;

            if (DescripciontextBox.Text == string.Empty || SiglasTextBox.Text == string.Empty)
            {
                if (DescripciontextBox.Text == string.Empty)
                {
                    SupererrorProvider.SetError(DescripciontextBox, "No puede dejar este campo vacio");
                    DescripciontextBox.Focus();
                }
                if (SiglasTextBox.Text == string.Empty)
                {
                    SupererrorProvider.SetError(SiglasTextBox, "No puede dejar este campo vacio");
                    SiglasTextBox.Focus();
                }

                paso = false;
            }

            return(paso);
        }
Beispiel #30
0
        private bool Validar()
        {
            bool paso = true;



            if (string.IsNullOrEmpty(DescripciontextBox.Text))
            {
                Myerror.SetError(DescripciontextBox, "El campo descripción no debe estar vacio");
                DescripciontextBox.Focus();
                paso = false;
            }

            if (string.IsNullOrEmpty(CantidadtextBox.Text))
            {
                Myerror.SetError(CantidadtextBox, "El campo cantidad no debe estar vació");
                CantidadtextBox.Focus();
                paso = false;
            }

            return(paso);
        }