private void LimpiaCajasTextoBox() { //CmbPuesto.SelectedIndex=0; //CmbEstatus.SelectedIndex = 0; TxtNomina.Clear(); TxtId_Usuario.Clear(); TxtNombres.Clear(); TxtApMaterno.Clear(); TxtApPaterno.Clear(); TxtRFC.Clear(); TxtCURP.Clear(); TxtTelefono.Clear(); TxtCelular.Clear(); TxtEmail.Clear(); TxtCalle.Clear(); TxtNumInterno.Clear(); TxtNumExterno.Clear(); TxtEntreCalles.Clear(); TxtColonia.Clear(); TxtCodigoPostal.Clear(); TxtEstado.Clear(); TxtMunicipio.Clear(); TxtPais.Clear(); DtpFechaNacimiento.MaxDate = DateTime.Now.AddYears(-18); PtbxFotoPerfil.Image = Properties.Resources.LgoEsferaBlancTrasp; CmbxPais.SelectedValue = 0; CmbAreas.SelectedValue = 0; CmbEstatus.SelectedValue = 0; CmbEmpresa.SelectedValue = 0; }
private void Limpiar() { TxtRut.Clear(); TxtNombre.Clear(); TxtApellidoPaterno.Clear(); TxtApellidoMaterno.Clear(); TxtBuscar.Clear(); TxtId.Clear(); TxtDireccion.Clear(); TxtTelefono.Clear(); TxtEmail.Clear(); TxtImagen.Clear(); BtnInsertar.Visible = true; BtnActualizar.Visible = false; ErrorIcono.Clear(); TxtImagen.Clear(); PicImagen.Image = null; this.RutaDestino = ""; this.RutaOrigen = ""; DgvListado.Columns[0].Visible = false; BtnActivar.Visible = false; BtnDesactivar.Visible = false; BtnEliminar.Visible = false; ChkSeleccionar.Checked = false; }
private void CboCiudad_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == 13) { TxtTelefono.Focus(); } }
private void BtnAlta_Click(object sender, EventArgs e) { try { if (TxtCc.Text != "" && TxtNombre.Text != "" && TxtDireccion.Text != "" && TxtCorreo.Text != "" && DtpFecha.Text != "" && TxtTelefono.Text != "" && PbCliente.ImageLocation != null) { Cliente cliente = new Cliente(); cliente.Guardar(TxtCc.Text, TxtNombre.Text, TxtDireccion.Text, TxtCorreo.Text, DtpFecha.Text, TxtTelefono.Text, PbCliente.ImageLocation); MessageBox.Show("Datos Guardados Correctamente"); TxtCc.Clear(); TxtNombre.Clear(); TxtDireccion.Clear(); TxtCorreo.Clear(); TxtTelefono.Clear(); PbCliente.ImageLocation = null; } else { if (PbCliente.ImageLocation != null) { MessageBox.Show("Todos los Campos deben ser llenados para poder dar de alta un cliente"); } else { MessageBox.Show("Todos los Campos deben ser llenados para poder dar de alta un cliente y La imagen debe ser cargada"); } } } catch (Exception ex) { MessageBox.Show("Error: " + ex); } }
public void Clear()//METODO lIMPIAR { TxtCc.Clear(); TxtPnombre.Clear(); TxtSnombre.Clear(); TxtPapellido.Clear(); TxtSapellido.Clear(); TxtTelefono.Clear(); TxtCelular.Clear(); TxtDireccion.Clear(); TxtEmail.Clear(); CmbSexo.SelectedItem = (null); DateNacimiento.ResetText(); DateIngreso.ResetText(); DateRetiro.ResetText(); DateRetiro.Enabled = false; ChekFecha.Checked = false; TxtObservaciones.Clear(); CmbDisponibilidad.SelectedItem = (null); txtCargo.Clear(); cbxContrato.Text = ""; txtSalario.Clear(); txtEps.Clear(); txtCompensaciones.Clear(); txtPensiones.Clear(); txtARP.Clear(); CkbActivo.Checked = true; TxtCc.Focus(); BtnGuardar.Enabled = true; BtnModificar.Enabled = false; Habilitar(); TxtCc.Focus(); }
private void BtnEliminar_Click(object sender, EventArgs e) { try { const string eliminar = "DELETE FROM Vendedores WHERE IdVendedor=@Id"; var cmd = new OleDbCommand(eliminar, Cnx) { CommandType = CommandType.Text }; cmd.Parameters.AddWithValue("@Id", TxtId.Text); Cnx.Open(); cmd.ExecuteNonQuery(); Cnx.Close(); MessageBox.Show(@"El Contacto Fue Eliminado...."); } catch (Exception ex) { MessageBox.Show(ex.Message, null, MessageBoxButtons.OK, MessageBoxIcon.Error); } TxtId.Clear(); TxtNombre.Clear(); TxtFechaAlta.Clear(); TxtNIF.Clear(); TxtFechaNac.Clear(); TxtDireccion.Clear(); TxtPoblacion.Clear(); TxtTelefono.Clear(); TxtEstadoCivil.Clear(); pictureBox1.ImageLocation = ""; TxtId.Focus(); }
private void GrabarCabecera() { if (Session.Count == 0) { LblMensaje.Text = "Debe Acceder Cuenta con su Usuario y Contraseña"; return; } if (TxtFechaReg.Text.Trim() == "") { LblMensaje.Text = "Ingrese Fecha de Pedido"; TxtFechaReg.Focus(); return; } if (TxtFormaPago.Text.Trim() == "") { LblMensaje.Text = "Ingrese Forma de Pago"; TxtFormaPago.Focus(); return; } if (TxtFormaEnvio.Text.Trim() == "") { LblMensaje.Text = "Ingrese Forma de Envio"; TxtFormaEnvio.Focus(); return; } if (TxtDireccion.Text.Trim() == "") { LblMensaje.Text = "Ingrese Dirección"; TxtDireccion.Focus(); return; } if (TxtTelefono.Text.Trim() == "") { LblMensaje.Text = "Ingrese Teléfono"; TxtTelefono.Focus(); return; } try { Ent.Idpedido = int.Parse(0 + TxtIdPedido.Text); Ent.Idusuario = int.Parse(0 + Session["IdUsuario"].ToString()); Ent.FechaReg = Convert.ToDateTime(TxtFechaReg.Text); Ent.Formapago = TxtFormaPago.Text.Trim(); Ent.Formaenvio = TxtFormaEnvio.Text.Trim(); Ent.Direccion = TxtDireccion.Text.Trim(); Ent.Telefono = TxtTelefono.Text.Trim(); int filas; filas = NegPedidos.GrabarPedido(Ent); if (filas > 0) { TxtIdPedido.Text = Convert.ToString(filas); LblMensaje.Text = "Pedido Registrado"; } } catch (Exception ex) { LblMensaje.Text = ex.Message; } }
private void Clear()//Método para limpiar { TxtOrden.Clear(); TxtOrden.Enabled = true; TxtCc.Clear(); TxtNombre.Clear(); TxtDireccion.Clear(); TxtTelefono.Clear(); TxtObservaciones.Clear(); TxtTotal.Clear(); TxtFactura.Clear(); CbxEstado.SelectedItem = (null); DateVencimiento.ResetText(); DateVencimiento.Enabled = true; CbxEstado.Enabled = true; GridViewFactura.DataSource = null; TxtIva.Clear(); TxtImpuesto.Clear(); TxtDescuento.Clear(); txtSubtotal.Clear(); cbmPago.SelectedItem = null; CkbActivo.Visible = false; BtnBuscar.Visible = true; MostrarCodigo(); TxtOrden.Focus(); }
private void BtnBaja_Click(object sender, EventArgs e) { String Cla = TxtCc.Text; Cliente cliente = new Armeria.Cliente(); if (cliente.bajaCliente(Cla, 1)) { MessageBox.Show("Dato dado de Baja Corretamente"); } else { MessageBox.Show("Dato dado de Baja Corretamente"); } TxtCc.Clear(); TxtNombre.Clear(); TxtDireccion.Clear(); TxtCorreo.Clear(); TxtTelefono.Clear(); PbCliente.ImageLocation = null; //ArchivoTexto archivotexto = new ArchivoTexto(); //archivotexto.Leer(1); //ArchivoBinario archivobinario = new ArchivoBinario(); //archivobinario.Leer(1); }
public async void BorrarTappedExecute(object parameter) { try { if (string.IsNullOrEmpty(Numero)) { return; } var lista = Numero.ToList(); Position = CursorPosition; if (Position == 0) { Position = lista.Count; } lista.RemoveAt(Position - 1); Numero = string.Empty; var text = string.Empty; foreach (var item in lista) { text = text + item; } Numero = text; TxtTelefono.Focus(); CursorPosition = Position; } catch (Exception ex) { ; } }
/// <summary> /// Limpia los campos dónde se van a introducir datos. /// </summary> private void LimpiarCampos() { TxtNombre.Clear(); TxtApellidos.Clear(); TxtNif.Clear(); TxtDireccion.Clear();; TxtTelefono.Clear(); }
private void ClearData() { TxtNombre.Clear(); TxtApellido.Clear(); TxtDireccion.Clear(); TxtTelefono.Clear(); TxtTelfonoT.Clear(); }
public void LimpiarCajitas() { TxtDni.Clear(); TxtNombre.Clear(); TxtApellido.Clear(); TxtDireccion.Clear(); TxtEmail.Clear(); TxtTelefono.Clear(); }
public void LimpiarCajitas() { TxtCodigo.Clear(); TxtNombre.Clear(); TxtDireccion.Clear(); TxtRuc.Clear(); TxtTelefono.Clear(); TxtEmail.Clear(); }
public void LimpiarCamposCliente() { TxtCedula.Clear(); TxtNombre.Clear(); TxtApellido.Clear(); TxtTelefono.Clear(); TxtTelefono.Clear(); TxtCelular.Clear(); TxtEmail.Clear(); }
private void Limpiar() { TxtNombre.Clear(); TxtApellido.Clear(); TxtTelefono.Clear(); TxtNombre.Focus(); CbxTipoContactos.SelectedIndex = 0; id = 0; }
public bool ValidarGuardar() { if (TxtNumeroIdentificacion.Text == "") { TxtNumeroIdentificacion.Focus(); return(false); } else { if (TxtNombreCorto.Text == "") { TxtNombreCorto.Focus(); return(false); } else { if (TxtDireccion.Text == "") { TxtDireccion.Focus(); return(false); } else { if (CboIdentificacion.SelectedIndex < 0) { CboIdentificacion.Focus(); return(false); } else { if (CboIdentificacion.SelectedIndex < 0) { CboIdentificacion.Focus(); return(false); } else { if (TxtTelefono.Text == "") { TxtTelefono.Focus(); return(false); } else { return(true); } } } } } } }
private void ClearData() { TxtNombre.Clear(); TxtApellido.Clear(); TxtTelefono.Clear(); _id = 0; CbxTipoContacto.SelectedIndex = 0; _filename = ""; PbFotoPerfil.ImageLocation = ""; }
private void BtnActualizar_Click(object sender, EventArgs e) { try { Cliente cliente = new Cliente(); if (TxtCc.Text != "" && TxtNombre.Text != "" && TxtDireccion.Text != "" && TxtCorreo.Text != "" && DtpFecha.Text != "" && TxtTelefono.Text != "" && PbCliente.ImageLocation != null) { String Cla = TxtCc.Text; String datos = cliente.consultaCliente(Cla, 1); if (datos != null) { string[] campos = datos.Split('|'); campos[0] = TxtCc.Text; campos[1] = TxtNombre.Text; campos[2] = TxtDireccion.Text; campos[3] = TxtCorreo.Text; campos[4] = DtpFecha.Text; campos[5] = TxtTelefono.Text; campos[6] = PbCliente.ImageLocation; cliente.bajaCliente(Cla, 1); cliente.Guardar(campos[0], campos[1], campos[2], campos[3], campos[4], campos[5], campos[6]); MessageBox.Show("Datos Modificados Correctamente"); TxtCc.Clear(); TxtNombre.Clear(); TxtDireccion.Clear(); TxtCorreo.Clear(); TxtTelefono.Clear(); PbCliente.ImageLocation = null; } else { MessageBox.Show("Dato no encontrado"); } } else { if (PbCliente.ImageLocation != null) { MessageBox.Show("Todos los Campos deben ser llenados para poder Modificar un cliente"); } else { MessageBox.Show("Todos los Campos deben ser llenados para poder Modificar un cliente y La imagen debe ser cargada"); } } } catch (Exception ex) { MessageBox.Show("Error: " + ex); } }
private void BtnLimpiar_Click_1(object sender, EventArgs e) { TxtId.Clear(); TxtNombre.Clear(); TxtFechaAlta.Clear(); TxtNIF.Clear(); TxtFechaNac.Clear(); TxtDireccion.Clear(); TxtPoblacion.Clear(); TxtTelefono.Clear(); TxtEstadoCivil.Clear(); pictureBox1.ImageLocation = ""; TxtId.Focus(); }
private void BtnLimpia_Click(object sender, EventArgs e) { TxtApellido.Clear(); TxtQueryID.Clear(); MTxtCedula.Clear(); TxtCodigo.Clear(); TxtNombre.Clear(); TxtUser.Clear(); TxtQueryNombre.Clear(); TxtTelefono.Clear(); TxtUser.Clear(); TxtConfirmar.Clear(); TxtContrasena.Clear(); }
public void Limpiar() { TxtNombre1.Clear(); TxtNombre2.Clear(); TxtApellido1.Clear(); TxtApellido2.Clear(); TxtDireccion.Clear(); TxtTelefono.Clear(); PctHuella.Image = null; PctFoto.Image = null; Pt_Firma.Image = null; TxtEdad.Text = ""; DtFechaNacimiento.Value = DateTime.Now.Date; ModoEdicion.Visible = false; }
private void BtnCancelar_Click_1(object sender, EventArgs e) { BtnContrato.Enabled = false; BtnTrabajador.Enabled = false; TxtDireccion.Clear(); txtEmail.Clear(); TxtNit.Clear(); TxtPaginaWeb.Clear(); TxtRazonSocial.Clear(); TxtRepresentante.Clear(); TxtTelefono.Clear(); TxtTelRepresentante.Clear(); pbxFotografia.Image = null; DgvEmpresa.ClearSelection(); TxtNit.Focus(); }
private void Limpiar() { TxtBuscar.Clear(); TxtNombre.Clear(); TxtId.Clear(); TxtTelefono.Clear(); TxtDireccion.Clear(); TxtNumDocumento.Clear(); TxtEmail.Clear(); BtnInsertar.Visible = true; BtnActualizar.Visible = false; ErrorIcono.Clear(); DgvListado.Columns[0].Visible = false; BtnEliminar.Visible = false; ChkSeleccionar.Checked = false; }
protected void Func_LimpiarControles() { TxtIdentificacion.Clear(); TxtNombres.Clear(); TxtApellidos.Clear(); CbxSexo.SelectedIndex = 0; CbxEstado.SelectedIndex = 0; TxtDireccion.Clear(); TxtCorreo.Clear(); TxtTelefono.Clear(); TxtUsuario.Clear(); TxtMovil.Clear(); LblUser.Text = ""; ruta_default = Filename = Path.Combine(folder, "default.png"); PtbFoto.Image = Image.FromFile(ruta_default); TxtIdentificacion.Focus(); }
private void CmdAgregar_Click(object sender, EventArgs e) { string placa = TxtPlacas.Text; string marca = TxtMarca.Text; string modelo = TxtModelo.Text; string telefono = TxtTelefono.Text; string anio = TxtAnio.Text; vehiculo = new Vehiculo(placa, marca, modelo, telefono, anio); inventario.Agregar(vehiculo);// una vez que se agregen los registros los ordenaremos con este metodo inventario.Ordenar(vehiculo); TxtPlacas.Clear(); TxtMarca.Clear(); TxtModelo.Clear(); TxtTelefono.Clear(); TxtAnio.Clear(); TxtPlacas.Focus(); }
public void Clear()//MÉTODO LIMPIAR { TxtCc.Clear(); TxtNombre.Clear(); TxtTelefono.Clear(); TxtExt.Clear(); TxtCelular.Clear(); TxtFax.Clear(); TxtDireccion.Clear(); TxtEmail.Clear(); TxtObservaciones.Clear(); TxtContacto.Clear(); CkbActivo.Checked = true; Habilitar(); BtnModificar.Enabled = false; BtnGuardar.Enabled = true; TxtCc.Focus(); }
private void Clear()//Método para limpiar { TxtRemision.Clear(); TxtRemision.Enabled = true; TxtCc.Clear(); TxtNombre.Clear(); TxtDireccion.Clear(); TxtTelefono.Clear(); TxtObservaciones.Clear(); TxtTotal.Clear(); CbxEstado.SelectedItem = (null); txtSubtotal.Clear(); txtIva.Clear(); DateOrden.ResetText(); cmbEmpleados.SelectedItem = (null); //cmbEmpleados.SelectedText = ("Seleccione..."); GridViewOrden.DataSource = null; TxtRemision.Focus(); }
private void BnGuardar_Click(object sender, EventArgs e) { if (TxtNombres.Text == "" || TxtNombres.Text == null) { MessageBox.Show("Debe ingresar los nombres y apellidos", "ALTO", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtNombres.Focus(); return; } if (TxtCi.Text == "" || TxtCi.Text == null) { MessageBox.Show("Debes ingresar la cédula.", "ALTO", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtCi.Focus(); return; } if (TxtTelefono.Text == "" || TxtTelefono.Text == null) { MessageBox.Show("Debes ingresar un número de teléfono", "ALTO", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtTelefono.Focus(); return; } DialogResult rta = MessageBox.Show("¿Esta seguro de ingresar el registro?", "CONFIRMAR", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2); if (rta == DialogResult.No) { return; } CADCliente Guardar = new CADCliente(); Guardar.InsertCliente(TxtNombres.Text.ToUpper(), TxtCi.Text.ToUpper(), TxtTelefono.Text, TxtFechaNa.Value); LLenarCliente = new ClassDgvLlenarCliente(); LLenarCliente.TraerClientes(DgvDatos); MessageBox.Show("Registro guardado correctamente.", "CONFIRMAR", MessageBoxButtons.OK, MessageBoxIcon.Information); TxtNombres.Text = null; TxtCi.Text = null; TxtTelefono.Text = null; }
/// <summary> /// Limpia los campos dónde se van a introducir datos. /// </summary> private void LimpiarCampos() { TxtNombre.Clear(); TxtApellidos.Clear(); TxtNif.Clear(); TxtDireccion.Clear();; TxtTelefono.Clear(); TxtObservaciones.Clear(); TxtMarca.Clear(); TxtModelo.Clear(); TxtMatricula.Clear(); TxtLlave.Clear(); TxtPlaza.Clear(); TxtBaseImponible.Clear(); TxtIva.Clear(); TxtTotal.Clear(); }