CRIACAO DE ARQUIVO

Delphi

13/03/2003

COMO FAÇO PARA CRIAR UM ARQUIVO E DEIXÁ-LO SOMENTE LEITURA ????


Anonymous

Anonymous

Curtidas 0

Respostas

Anonymous

Anonymous

13/03/2003

Para criar um arquivo :

var
ARQ : integer;
begin
ARQ := filecreate(´arquivo.dat´);
fileclose(ARQ);
end;

Para abrir somente leitura :

var
ARQ: integer;
begin
ARQ := fileopen(´arquivo.dat´,fmOpenRead);
fileclose(ARQ);
end;


GOSTEI 0
Dor_poa

Dor_poa

13/03/2003

:(


GOSTEI 0
POSTAR