private void txtBusqueda_TextChanged(object sender, EventArgs e) { if (cbTipoBusqueda.Text == "Nombre/Apellido") { NChofer.BuscarPorNombre(dgvSelChofer, txtBusqueda.Text); //OcultarColumnas(); } else if (cbTipoBusqueda.Text == "Dni") { NChofer.BuscarPorDni(dgvSelChofer, txtBusqueda.Text); //OcultarColumnas(); } else if (cbTipoBusqueda.Text == "Modelo") { NChofer.BuscarPorMarcaModelo(dgvSelChofer, txtBusqueda.Text); //OcultarColumnas(); } else if (cbTipoBusqueda.Text == "Patente") { NChofer.BuscarPorPatente(dgvSelChofer, txtBusqueda.Text); //OcultarColumnas(); } else { Mostrar(); } //OcultarColumnas(); }
private void txtBuscarListado_TextChanged(object sender, EventArgs e) { if (cbTipoBusqueda.Text == "Nombre/Apellido") { NChofer.BuscarPorNombre(dgbListado, txtBuscarListado.Text); OcultarColumnas(); chkEliminar.Checked = false; lblTotal.Text = "REGISTROS: " + dgbListado.Rows.Count.ToString(); } else if (cbTipoBusqueda.Text == "Dni") { NChofer.BuscarPorDni(dgbListado, txtBuscarListado.Text); OcultarColumnas(); chkEliminar.Checked = false; lblTotal.Text = "REGISTROS: " + dgbListado.Rows.Count.ToString(); } else if (cbTipoBusqueda.Text == "Modelo") { NChofer.BuscarPorMarcaModelo(dgbListado, txtBuscarListado.Text); OcultarColumnas(); chkEliminar.Checked = false; lblTotal.Text = "REGISTROS: " + dgbListado.Rows.Count.ToString(); } else if (cbTipoBusqueda.Text == "Patente") { NChofer.BuscarPorPatente(dgbListado, txtBuscarListado.Text); OcultarColumnas(); chkEliminar.Checked = false; lblTotal.Text = "REGISTROS: " + dgbListado.Rows.Count.ToString(); } else { Mostrar(); chkEliminar.Checked = false; lblTotal.Text = "REGISTROS: " + dgbListado.Rows.Count.ToString(); } OcultarColumnas(); chkEliminar.Checked = false; lblTotal.Text = "REGISTROS: " + dgbListado.Rows.Count.ToString(); }