private void CmbClientes_SelectedIndexChanged(object sender, EventArgs e) { string combo = (string)CmbEstado.SelectedItem; bool estado = false; if (combo == "ACTIVO") { estado = true; } else if (combo == "INACTIVO") { estado = false; } listboxClientes.DataSource = null; listboxClientes.DataSource = _clienteServicio.TraerPorEstado(estado); }