private void TxtBxPrecio_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == (Char)Keys.Enter) { try { precio = double.Parse(TxtBxPrecio.Text); if (precio > 0 && precio < 1000) { pr = cant * precio; LblPrecioT.Text = pr.ToString(); BttGuardar.Focus(); } else { MessageBox.Show("El precio debe ser un valor positivo", "¡Atención!", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtBxPrecio.Text = ""; } } catch { MessageBox.Show("El precio debe ser un valor númerico", "¡Atención!", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtBxPrecio.Text = ""; } } }
private void TxtBxCantidad_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == (Char)Keys.Enter) { try { c = int.Parse(TxtBxCantidad.Text); cant = int.Parse(LblCantidad.Text); if (cant > 0 && cant < 1000) { if (cant >= c) { cantd = cant - c; LblC.Text = cantd.ToString(); BttGuardar.Focus(); } else { MessageBox.Show("La cantidad de salida no puede ser mayor a la que existe en la empresa", "Atencion", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtBxCantidad.Text = ""; } } else { MessageBox.Show("La cantidad debe ser mayor a cero ", "AVISO", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Warning); TxtBxCantidad.Text = ""; } } catch { MessageBox.Show("La cantidad debe ser númerica ", "AVISO", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Warning); TxtBxCantidad.Text = ""; } } }
private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == (Char)Keys.Enter) { try { edad = int.Parse(TxtBxEdad.Text); if (edad >= 18 && edad <= 65) { BttGuardar.Focus(); } else { MessageBox.Show("Edad Incorrecta debe ser mayor a los 18 años y menor a 65", "¡Atencion!", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } catch { MessageBox.Show("Ingrese solo números", "¡Atencion!", MessageBoxButtons.OK, MessageBoxIcon.Warning); BttGuardar.Focus(); } } }
private void TxtBxEdad_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == (Char)Keys.Enter) { try { edad = int.Parse(TxtBxEdad.Text); if (edad > 18 && edad < 65) { BttGuardar.Focus(); } else { MessageBox.Show("Edad Incorrecta"); } } catch { MessageBox.Show("Ingrese solo números"); TxtBxEdad.Focus(); } } }
private void Date_ValueChanged_1(object sender, EventArgs e) { fecha = Date.Text; BttGuardar.Focus(); }