Ver Mensaje Individual
  #2  
Antiguo 04-12-2004
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
Así por ejemplo:


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

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

// Saludos
Responder Con Cita