private void btnCrear_Click(object sender, EventArgs e) { if (Vacio.txb(this)) { if (Validar.decimales(txbCosto.Text)) { string sql = "INSERT INTO compras(materia_id,cantidad,costo,total,fecha)VALUES('" + cmbMateria.SelectedValue + "','" + txbCantidad.Text + "','" + txbCosto.Text + "','" + total + "','" + dtpFecha.Text + "')"; if (bd.insertar(sql)) { MessageBox.Show("Se agrego el registro", "Correcto", MessageBoxButtons.OK, MessageBoxIcon.Information); Index(); } } else { MessageBox.Show("El formato delcosto no es valido", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Debes llenar todos los campos", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void txbUser_KeyPress(object sender, KeyPressEventArgs e) { Validar.LetrasNumeros(e); }
private void txbMaterno_KeyPress(object sender, KeyPressEventArgs e) { Validar.LetrasEspacios(e); }
private void txbCosto_KeyPress(object sender, KeyPressEventArgs e) { Validar.NumerosPunto(e); }
private void txbCantidad_KeyPress(object sender, KeyPressEventArgs e) { Validar.Numeros(e); }
private void txbCodigo_KeyPress(object sender, KeyPressEventArgs e) { Validar.Letras(e); }
private void txbNombre_KeyPress(object sender, KeyPressEventArgs e) { Validar.LetrasNumerosEspacios(e); }