private void dtBuscar_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e) { try { DataRow dRow = new Empresa_Distribuidora().Select(new Empresa_Distribuidora().SelectId(AccionesSistema.ObtenerValorSelecion(dtBuscar, 1).ToString())); try { AccionSeleccionar(dRow); } catch { } } catch { AccionesSistema.RemoverSelecion(dtBuscar); } }
public void Buscar() { dtBuscar.Rows.Clear(); DataTable dTable; Image res; if (accion) { dTable = new Empresa_Distribuidora().Like(txBuscar.Text); res = Resources.EmpresaD; } else { dTable = new Empresa_Distribuidora().LikeOf(txBuscar.Text); res = Resources.Reciclaje; } foreach (DataRow row in dTable.Rows) { dtBuscar.Rows.Add(row[4].ToString() == ""?res: row[4], row[2].ToString()); } }