Ver Mensaje Individual
  #2  
Antiguo 06-07-2005
Avatar de dmagui
dmagui dmagui is offline
Miembro
 
Registrado: may 2005
Posts: 168
Reputación: 19
dmagui Va por buen camino
Gracias ya lo logre hacer solo tenia que hacer lo siguiente

Código Delphi [-]
 
IBDataSet2.Close;
   IBDataSet2.SelectSQL.Clear;
   IBDataSet2.SelectSQL.Add ('select * from subcomp where cod_componente = ' + Quotedstr (DBLookupComboBox1.KeyValue) + 'and item_comp = ' + Quotedstr (DBLookupComboBox3.KeyValue));
   IBDataSet2.Open;
   IBDataSet2.Active := True;

Responder Con Cita