Tema: TQuickRep
Ver Mensaje Individual
  #59  
Antiguo 07-08-2011
lisc_dla lisc_dla is offline
Miembro
NULL
 
Registrado: jul 2011
Posts: 98
Reputación: 13
lisc_dla Va por buen camino
a el campo rfc(varchar) le agregue datos como loco:

hdfg
rfc
etc.

cuando utilizaba este codigo me marcaba error

Try
QuickReport1:=TQuickReport1.Create(self);
QuickReport1.ADOQuery1.SQL.Text:= 'Select * from cliente where frc = :s';
QuickReport1.ADOQuery1.Parameters[0].Value:= txt_rfc.text;
QuickReport1.ADOQuery1.Open;
QuickReport1.Preview;
finally
QuickReport1.Free;

pero con este no los imprime todos

Try
QuickReport1:=TQuickReport1.Create(self);
QuickReport1.Preview;
finally
QuickReport1.Free;
end;

de todos modos muchas gracias por la ayuda que me has brindado
Responder Con Cita