Ver Mensaje Individual
  #3  
Antiguo 01-08-2011
Jose Roman Jose Roman is offline
Miembro
 
Registrado: jul 2006
Ubicación: Colombia
Posts: 364
Reputación: 20
Jose Roman Va por buen camino
ok, gracias por ayudarme pero te comento que por fin se me ilumino el cerebro, aquí les dejo la solución para alguien en el futuro:
  1. Colocar un Text Component con su propiedad visible en FALSE y su propiedad TEXT vacia
  2. En el evento DataBand seleccionar OnBeforePrint y escribir:
    Código Delphi [-]
    if (DataText1.Text = VarText.Text) then DataText1.Visible := False; 
    else DataText1.Visible := True;
    end if; 
    VarText.Text := DataText1.Text;

Listo ahora no mostrara los registros repetidos.
Responder Con Cita