Ver Mensaje Individual
  #2  
Antiguo 13-03-2004
Avatar de jachguate
jachguate jachguate is offline
Miembro
 
Registrado: may 2003
Ubicación: Guatemala
Posts: 6.254
Reputación: 28
jachguate Va por buen camino
Podes valerte del método FindComponent.

Código:
for i := 1 to MaxTallas do
Begin
  (FindComponent('qrlTitulo' + inttostr(i)) as TQrLabel).Caption := Talla[i];
  (FindComponent('qrdbText' + intToStr(i)) as TQrdbText).DataField := 'Talla' + inttostr(i);
End;
Hasta luego.

Responder Con Cita