Exemple #1
0
        private bool Validar()
        {
            bool paso = true;

            MyError.Clear();

            if (string.IsNullOrWhiteSpace(ComentariotextBox.Text))
            {
                MyError.SetError(ComentariotextBox, "El campo comentario no puede estar vacio");
                ComentariotextBox.Focus();
                paso = false;
            }
            if (string.IsNullOrWhiteSpace(DepositotextBox.Text))
            {
                MyError.SetError(DepositotextBox, "El campo deposito no puede estar vacio");
                DepositotextBox.Focus();
                paso = false;
            }
            if (string.IsNullOrWhiteSpace(MontotextBox.Text))
            {
                MyError.SetError(MontotextBox, "El campo monto no puede estar vacio");
                MontotextBox.Focus();
                paso = false;
            }
            return(paso);
        }
Exemple #2
0
        public void GuardarDetalleData(string Tipo)
        {
            this.DatosdataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
            this.DatosdataGridView.MultiSelect   = false;
            var detalle = new Detalles();

            DatosdataGridView.Rows.Add();
            int cantFilas = DatosdataGridView.Rows.Count - 1;

            DatosdataGridView[0, cantFilas].Value = Tipo;
            DatosdataGridView[1, cantFilas].Value = JugadatextBox.Text;
            DatosdataGridView[2, cantFilas].Value = MontotextBox.Text;
            total = total + Utilidades.ToInt(MontotextBox.Text);
            //  detalle.IdLoteria = Utilidades.ToInt(Loteriabutton.Text);
            detalle.Jugada = Utilidades.ToInt(JugadatextBox.Text);
            detalle.Precio = Utilidades.ToInt(MontotextBox.Text);
            detalle.Tipo   = Tipo.ToString();


            if (DetallesBLL.Guardar(detalle))
            {
                id++;
                ticket.detalles.Add(DetallesBLL.Buscar(id));
                TotaltextBox.Clear();
                JugadatextBox.Clear();
                MontotextBox.Clear();
                TotaltextBox.Text = total.ToString();
                MontotextBox.Focus();
            }
            else
            {
                MessageBox.Show("Error en guardar los datos intente de nuevo");
            }
        }
Exemple #3
0
        private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)Keys.Enter || e.KeyChar == (char)Keys.Tab)
            {
                this.NombredataGridView.MultiSelect   = false;
                this.NombredataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;

                if (!String.IsNullOrEmpty(IdLoteriatextBox.Text))
                {
                    lista = LoteriasBLL.GetListaLoteriaID(Utilidades.ToInt(IdLoteriatextBox.Text));
                }
                else
                {
                    lista = LoteriasBLL.GetListaLoteriaID(1);
                }

                NombredataGridView.DataSource = lista;
                if (NombredataGridView.CurrentRow != null)
                {
                    NombreLoteriatextBox.Text = NombredataGridView.SelectedRows[0].Cells[1].Value.ToString();
                    MontotextBox.Focus();
                }
                else
                {
                    MessageBox.Show("Esta loteria no Existe");
                    NombreLoteriatextBox.Clear();
                    IdLoteriatextBox.Clear();
                    IdLoteriatextBox.Focus();
                }
            }
        }
Exemple #4
0
 private void Agregarbutton_Click(object sender, EventArgs e)
 {
     if (!(string.IsNullOrEmpty(IdLoteriatextBox.Text)))
     {
         if ((JugadatextBox.Text).Length > 0 && ((JugadatextBox.Text).Length < 3))
         {
             string tipo = "Quiniela";
             GuardarDetalleData(tipo);
         }
         else
         if ((JugadatextBox.Text).Length >= 3 && (JugadatextBox.Text).Length < 5)
         {
             string tipo = "Pale";
             GuardarDetalleData(tipo);
         }
         else
         if ((JugadatextBox.Text).Length >= 5 && (JugadatextBox.Text).Length < 7)
         {
             string tipo = "Tripleta";
             GuardarDetalleData(tipo);
         }
         else
         {
             MessageBox.Show("Error en el Formato");
             MontotextBox.Focus();
         }
     }
     else
     {
         MessageBox.Show("No puedes crear jugada sin especificar una loteria");
         Loteriabutton.Focus();
     }
 }
        private bool Validar()
        {
            bool   validado    = true;
            string obligatorio = "Campo obligatorio";

            if (string.IsNullOrWhiteSpace(IDnumericUpDown.Text))
            {
                errorProvider.SetError(IDnumericUpDown, obligatorio);
                IDnumericUpDown.Focus();
                validado = false;
            }
            if (string.IsNullOrWhiteSpace(MontotextBox.Text))
            {
                errorProvider.SetError(MontotextBox, obligatorio);
                MontotextBox.Focus();
                validado = false;
            }
            if (ToDecimal(MontotextBox.Text) < 1)
            {
                errorProvider.SetError(MontotextBox, "El monto debe ser mayor a 0");
                MontotextBox.Focus();
                validado = false;
            }
            if (string.IsNullOrWhiteSpace(TiempotextBox.Text))
            {
                errorProvider.SetError(TiempotextBox, obligatorio);
                TiempotextBox.Focus();
                validado = false;
            }
            if (ToInt(TiempotextBox.Text) < 1)
            {
                errorProvider.SetError(TiempotextBox, "El tiempo debe ser mayor a un mes");
                TiempotextBox.Focus();
                validado = false;
            }
            if (string.IsNullOrWhiteSpace(FechadateTimePicker.Value.ToString()))
            {
                errorProvider.SetError(FechadateTimePicker, obligatorio);
                FechadateTimePicker.Focus();
                validado = false;
            }

            return(validado);
        }