Ver Mensaje Individual
  #3  
Antiguo 18-03-2008
hecospina hecospina is offline
Miembro
 
Registrado: oct 2007
Posts: 202
Reputación: 17
hecospina Va por buen camino
lo que entendi fue poco realmente pero si quieres tomar en un combobox los resultados de un sql intenta
Código Delphi [-]
begin
  while not Query1.eof do
  begin
    combobox1.items.add(Query1.fieldByName( 'Codigo').asString);
    Query1.next;
  end;
end;
Responder Con Cita