Re: [delphi-br] Ler arquivo.txt? delphi

2007-06-07 Por tôpico Bruno Sanson
Uma forma é abrir o arquivo texto através de uma StringList procedure Txptk.ImportarArquivo; var SLArquivo: TStringList; I: Integer; begin SLArquivo := nil; try SLArquivo:= TStringList.Create; try SLArquivo.LoadFromFile(FArquivoImportacao); // FArquivoImportacao é uma variáve

[delphi-br] Ler arquivo.txt? delphi

2007-06-07 Por tôpico firefoxlanhousejundiai
Estou precisando fazer que o delphi leia o arquivo.txt, pois a minha ideia é colocar neste txt o feriado. ai eu faria um (if feriado = arquivo.txt then)... Entao eu preciso de uma rotina simples que só leia o txt o resto eu faço.