Jump to content
Fórum Script Brasil
  • 0

Arquivo Txt


Guest Marcos Silva

Question

3 answers to this question

Recommended Posts

  • 0

Adicione essa funcao ao sistema:

Se o arquivo existe ele adiciona o texto no fim, caso não exista ele cria o arquivo e adiciona o texto

var

function CriarArquivo(NomeArq,Dados: String):Boolean;

ArqLogico:TextFile;

begin

  try

  AssignFile(ArqLogico,NomeArq);

  if not FileExists(NomeArq) then

    ReWrite(ArqLogico)

  else

    Append(ArqLogico);

  Result:=True;

  except

  Result:=False;

  end;

  if Result then

  begin

    WriteLn(ArqLogico,Dados);

    CloseFile(ArqLogico);

  end;

end;

Para salvar o edit voce utiliza:

procedure TForm1.Button1Click(Sender: TObject);

begin

  CriarArquivo('NomeDoArquivo', edit1.text)

end;

Retirado do Site www.delphi.eti.br (lembre-se sempre de ver nossa sessao de links antes de postar, o link esta na minha assinatura)

========================================================

Desenvolvida por: Ricardo Scache Belardinuci - FATEC-TQ

e-mail ri-taqua@ig.com.br

========================================================

Os creditos são do cara, não? cool.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...