private void Reset() { rtbMedicamentos.Clear(); rtbAntecedentes.Clear(); TxtNombre.Clear(); TxtApellido.Clear(); TxtDui.Clear(); RtbDireccion.Clear(); TxtNumero.Clear(); txtDia.Clear(); txtMes.Clear(); txtAño.Clear(); CboSexo.Items.Clear(); CboSexo.Items.Add("F"); CboSexo.Items.Add("M"); CboEstadoCivil.Items.Clear(); CboEstadoCivil.Items.Add("Soltero"); CboEstadoCivil.Items.Add("Casado"); CboEstadoCivil.Items.Add("Divorsiado"); CboEstadoCivil.Items.Add("Viudo"); CboTipoSangre.Items.Clear(); CboTipoSangre.Items.Add("O -"); CboTipoSangre.Items.Add("O +"); CboTipoSangre.Items.Add("A -"); CboTipoSangre.Items.Add("A +"); CboTipoSangre.Items.Add("B -"); CboTipoSangre.Items.Add("B +"); CboTipoSangre.Items.Add("AB -"); CboTipoSangre.Items.Add("AB +"); }
private void LocalizarCep() { if (MtbCep.TextLength == 9) { using (var ws = new Criative.WsCorreios.AtendeClienteClient()) { try { var resultado = ws.consultaCEP(MtbCep.Text.Replace("-", "")); TxtRua.Text = resultado.end; TxtBairro.Text = resultado.bairro; TxtCidade.Text = resultado.cidade; CbxUf.Text = resultado.uf; TxtNumero.Focus(); } catch { MtbCep.Text = ""; TxtRua.Text = ""; TxtBairro.Text = ""; TxtCidade.Text = ""; CbxUf.Text = ""; } } } }
private void BtnCalcular_Click(object sender, EventArgs e) { if (TxtNumero.Text.Trim().Length == 0) { MessageBox.Show("Ingresar Numero"); TxtNumero.Focus(); return; } double n; string r; n = Convert.ToDouble(TxtNumero.Text); r = Convert.ToString(TxtRespuesta.Text); if (n > 0) { r = "Es Positivo"; TxtRespuesta.Text = r.ToString(); } else { r = "Es Negativo"; TxtRespuesta.Text = r.ToString(); } }
public bool Validar() { bool retorno = true; if (string.IsNullOrEmpty((TxtNombre.Text))) { errorP1.SetError(TxtNombre, "Debe ingresar el nombre."); TxtNombre.Focus(); retorno = false; } else { errorP1.SetError(TxtNombre, ""); } if (string.IsNullOrEmpty((TxtNumero.Text))) { errorP1.SetError(TxtNumero, "Debe ingresar el número."); TxtNumero.Focus(); retorno = false; } else { errorP1.SetError(TxtNumero, ""); } return(retorno); }
private void BtnLimpiar_Click(object sender, EventArgs e) { foreach (TextBox txt in this.Controls.OfType <TextBox>()) { txt.Clear(); TxtNumero.Focus(); } }
private void btnBuscarREmision_Click(object sender, EventArgs e) { Clear(); TxtNumero.Clear(); TxtNumero.Enabled = true; TxtCc.Enabled = false; btnBuscarREmision.Visible = false; }
private void LimpiarFiltros() { _limpiandoFiltros = true; TxtNumero.Text = "0"; TxtPatente.Text = string.Empty; ChkActivo.Checked = true; OnFiltered(); _limpiandoFiltros = false; TxtNumero.Focus(); }
private void BtnCalcular_Click(object sender, EventArgs e) { double num; num = Convert.ToDouble(TxtNumero.Text.Trim()); dob.Doble(num); TxtNumero.Clear(); TxtNumero.Focus(); }
private void TxtNumero_Validating(object sender, CancelEventArgs e) { if (string.IsNullOrEmpty((TxtNumero.Text))) { errorP1.SetError(TxtNumero, "Debe ingresar el número."); TxtNumero.Focus(); } else { errorP1.SetError(TxtNumero, ""); } }
Logica.LConsultas Consulta = new Logica.LConsultas(); //intancia de logica public void Clear() //Método para limpiar { TxtCc.Clear(); TxtNombre.Clear(); TxtNumero.Clear(); cmbNumero.SelectedItem = null; GridViewRemision.DataSource = null; GridViewOS.DataSource = null; GridViewFactura.DataSource = null; DateInicial.ResetText(); DateFinal.ResetText(); cmbReporte.SelectedItem = null; }
private void ClearFields() { ErrorProvider.Clear(); id = 0; CmbEtatBus.Text = "ACTIF"; TxtMarque.Text = ""; TxtNumero.Text = ""; TxtNumPos.Text = ""; CmbAxe.SelectedIndex = -1; CmbEtatBus.SelectedIndex = -1; TxtAnneeFabrication.Text = ""; DteMiseCirculation.Text = DateTime.Now.ToString(); TxtPlace.Text = "0"; TxtKilometrage.Text = "0"; TxtPlaque.Text = ""; TxtNumero.Focus(); BtnDelete.Enabled = false; BtnSave.Enabled = true; }
private void BtnGuardarVenta_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(CbxTipoComprobante.Text)) { MessageBox.Show("Seleccione Tipo de Comprobante", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); CbxTipoComprobante.Focus(); } else if (string.IsNullOrEmpty(TxtSerie.Text)) { MessageBox.Show("Digite Serie del Documento", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtSerie.Focus(); } else if (string.IsNullOrEmpty(TxtNumero.Text)) { MessageBox.Show("Digite Número del Documento", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNumero.Focus(); } else if (string.IsNullOrEmpty(TxtFechaEmision.Text)) { MessageBox.Show("Ingrese Fecha", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtFechaEmision.Focus(); } else if (string.IsNullOrEmpty(TxtNumeroDocumento.Text)) { MessageBox.Show("Ingrese un Cliente", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNumeroDocumento.Focus(); } else if (string.IsNullOrEmpty(TxtNombres.Text)) { MessageBox.Show("Cliente Incorrecto", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNombres.Focus(); } else if (MLVDetalle.Items.Count == 0) { MessageBox.Show("El detalle no puede estar vacío, agrege items", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtProducto.Focus(); } else { GuardarVenta(); } }
private void BtnGuardarCompra_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(CbxTipoComprobante.Text)) { MessageBox.Show("Seleccione Tipo de Comprobante", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); CbxTipoComprobante.Focus(); } else if (string.IsNullOrEmpty(TxtSerie.Text)) { MessageBox.Show("Digite Serie del Documento", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtSerie.Focus(); } else if (string.IsNullOrEmpty(TxtNumero.Text)) { MessageBox.Show("Digite Número del Documento", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNumero.Focus(); } else if (string.IsNullOrEmpty(DtpFecha.Text)) { MessageBox.Show("Seleccione Fecha", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); DtpFecha.Focus(); } else if (string.IsNullOrEmpty(TxtRucProveedor.Text)) { MessageBox.Show("Ingrese un Proveedor", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtRucProveedor.Focus(); } else if (string.IsNullOrEmpty(TxtRazonSocial.Text)) { MessageBox.Show("Proveedor Incorrecto", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtRucProveedor.Focus(); } else if (MLVDetalle.Items.Count == 0) { MessageBox.Show("El detalle no puede estar vacío, agrege items", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtCodigo.Focus(); } else { GuardarCompra(); } }
private void BtnCalcular_Click(object sender, EventArgs e) { var nome = TxtNome.Text; try { int numero = Convert.ToInt32(TxtNumero.Text); if (numero == 2) { throw new ErroDeProposito("Erro de propósito"); } else if (numero == 4) { throw new Exception("Erro genérico"); } numero += 100; MessageBox.Show("Olá " + nome + ", o valor do número + 100 é de: " + numero); } catch (FormatException errFormat) { MessageBox.Show("Olá cliente, você por acaso não digitou letra no lugar de número aqui? (" + errFormat.Message + ")"); TxtNumero.Focus(); } catch (ErroDeProposito errProposito) { MessageBox.Show(errProposito.Message); } catch (Exception err) { MessageBox.Show(err.Message); } finally { MessageBox.Show("Todas as minhas exceções tratadas."); } }
private void BtnCalcular_Click(object sender, EventArgs e) { if (TxtNumero.Text.Trim().Length == 0) { MessageBox.Show("Ingresar Numero"); TxtNumero.Focus(); return; } double n, r; n = Convert.ToDouble(TxtNumero.Text); if (n >= 10) { r = n * n; TxtResultado.Text = r.ToString(); } else { r = n * n * n; TxtResultado.Text = r.ToString(); } }
private void BtnMostrar_Click(object sender, EventArgs e) { if (TxtNumero.Text.Trim().Length == 0) { MessageBox.Show("Igresar el Número."); TxtNumero.Focus(); return; } int i; double num; num = Convert.ToDouble(TxtNumero.Text); for (i = 1; i <= 10; i++) { LsbTabla.Items.Add(num + " * " + i + " = " + num * i); } LsbTabla.Items.Add(TxtNumero.Text.Trim()); TxtNumero.Clear(); TxtNumero.Focus(); LsbTabla.ClearSelected(); }
public NumeroView() { InitializeComponent(); TxtNumero.KeyDown += TxtNumeroOnKeyDown; TxtNumero.Focus(); }
private void BtnLimpiar_Click(object sender, EventArgs e) { TxtNumero.Clear(); TxtResultado.Clear(); }
private void BtnGuardar_Click(object sender, EventArgs e) { if (TxtSerie.Text != "" && TxtNumero.Text != "" && TxtRUCProveedor.Text != "" && TxtCodigoEmpleado.Text != "" && TxtNombreCliente.Text != "" && TxtSubTotal.Text != "" && TxtIGV.Text != "" && TxtTotalPagar.Text != "") { if (MessageBox.Show("Enserio quieres imprimir la boleta", "Mensaje", MessageBoxButtons.YesNo) == DialogResult.Yes) { MessageBox.Show("Boleta Impresa", "Mensaje"); ClsEBoleta Eobj1 = new ClsEBoleta(); ClsNBoleta Nobj1 = new ClsNBoleta(); Eobj1.serie = TxtSerie.Text; Eobj1.numero = TxtNumero.Text; Eobj1.subtotal = subtotal; Eobj1.igv = igv; Eobj1.total = Convert.ToDouble(TxtTotalPagar.Text); Nobj1.MtdActualizarBoleta(Eobj1); TxtSerie.Enabled = true; TxtNumero.Enabled = true; TxtSerie.Clear(); TxtNumero.Clear(); //*********PROVEEDOR************ GbProveedor.Enabled = true; TxtRUCProveedor.Clear(); TxtNombreProveedor.Clear(); TxtNombreProveedor.Enabled = false; //*********EMPLEADO************* GbEmpleado.Enabled = true; TxtNombreEmpleado.Text = FrmLogin.NombreEmpleado; TxtCodigoEmpleado.Text = FrmLogin.CodigoEmpleado; TxtNombreEmpleado.Enabled = false; TxtCodigoEmpleado.Enabled = false; //**********CLIENTE************* GbCliente.Enabled = true; TxtNombreCliente.Clear(); //**********PRODUCTO************ GbProducto.Enabled = true; TxtCantidadProducto.Clear(); TxtCantidadProducto.Clear(); TxtCodigoProducto.Clear(); TxtPrecioProducto.Clear(); TxtNombreProducto.Clear(); TxtCantidadCompra.Clear(); TxtImporteCompra.Clear(); TxtCantidadProducto.Enabled = false; TxtPrecioProducto.Enabled = false; TxtNombreProducto.Enabled = false; TxtImporteCompra.Enabled = false; //**********PRODUCTO************ TxtSubTotal.Enabled = false; TxtIGV.Enabled = false; TxtTotalPagar.Enabled = false; BtnAgregar.Enabled = false; TxtSubTotal.Text = 0.ToString(); TxtIGV.Text = 0.ToString(); TxtTotalPagar.Text = 0.ToString(); ClsEDetalleBoleta Eobj = new ClsEDetalleBoleta(); ClsNDetalleBoleta Nobj = new ClsNDetalleBoleta(); Eobj.serie = ""; Eobj.numero = ""; DgvDetalleBoleta.DataSource = Nobj.MtdBuscarDetalleBoleta(Eobj); } } else { MessageBox.Show("Boleta Vacia", "Mensaje"); } }