private void FRMbuscarVehiculo_Load(object sender, EventArgs e) { Dictionary <String, String> searchAllMarcas = new Dictionary <string, string>(); marcas = Marca.buscar(searchAllMarcas); // turnos = Turno.buscar(searchAll); Dictionary <String, String> searchAllChoferes = new Dictionary <string, string>(); searchAllChoferes.Add("chofer_estado", "Activo"); choferes = Chofer.buscar(searchAllChoferes); //---Atributos que mostramos en los combos--- marcas.ForEach(marca => CMBmarca.Items.Add(marca.Nombre)); // turnos.ForEach(turno => CMBturno.Items.Add(turno.Descripcion)); choferes.ForEach(chofer => CMBChofer.Items.Add(chofer.Nombre)); //asociacion de datagrid con el evento de clic en boton dataGridView1.CellClick += dataGridView1_CellClick; }