Ver Mensaje Individual
  #16  
Antiguo 10-04-2007
Avatar de roman
roman roman is offline
Moderador
 
Registrado: may 2003
Ubicación: Ciudad de México
Posts: 20.269
Reputación: 10
roman Es un diamante en brutoroman Es un diamante en brutoroman Es un diamante en bruto
Perdón, me refería a un label, no tiene limitaciones. Por ejemplo, puedo poner:

Código Delphi [-]
var
  sl: TStringList;

begin
  sl := TStringList.Create;
  try
    sl.LoadFromFile('archivo.txt');
    Label1.Caption := sl.Text;
  finally
    sl.Free;
  end;
end;

Y archivo.txt puede ser tan grande como quiera. El único problema está al asignar valore literales, como ene le ejemplo de egostar; pero si el texto lo tomas de un archivo, un stream, una variable, etc., no dbe haber ningún problema

// Saludos
Responder Con Cita