Ver Mensaje Individual
  #1  
Antiguo 18-12-2007
Avatar de Nomad
Nomad Nomad is offline
Miembro
 
Registrado: abr 2007
Ubicación: Sarchi,Costa Rica
Posts: 107
Reputación: 18
Nomad Va por buen camino
Exclamation Problema cargar combo box from DB

Estoy haciend lo siguiente:

Código:
Query.SQL.Text := 'Select Producto from Productos order by Producto asc';
Query.Open;
Query.ExecSQL;
Combo.Clear;
WHile Query.FindNext Do
Begin
    Combo.Items.Add(Query.Fields[0].AsString);
end;
Query.Close;
y me presenta el siguiente error:

http://www.yourfilehost.com/media.php?cat=image&file=screenshot.JPG


que podra ser?
__________________
Quisiera cambiar el mundo, pero no me dan el código fuente.
Responder Con Cita