Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.04.22;
Скачать: CL | DM;

Вниз

Что делает процедура ProcessFile   Найти похожие ветки 

 
Dimaiv ©   (2002-04-09 20:39) [0]

в Хэлпе почему-то нет.


 
Anatoly Podgoretsky ©   (2002-04-09 20:49) [1]

Нет такой


 
Dimaiv ©   (2002-04-09 21:07) [2]

Вот пример из хелпа (пример для процедуры GetMem)
The following example opens a file named "test.txt" and reads the entire file into a dynamically allocated buffer. The buffer and the size of the file are then passed to a routine that processes the text, and finally the dynamically allocated buffer is freed and the file is closed.

var

F: file;
Size: Integer;
Buffer: PChar;
begin
AssignFile(F, "test.txt");
Reset(F, 1);
try
Size := FileSize(F);
GetMem(Buffer, Size);
try
BlockRead(F, Buffer^, Size);
ProcessFile(Buffer, Size);
finally
FreeMem(Buffer);
end;
finally
CloseFile(F);
end;

end;


 
MBo ©   (2002-04-09 21:14) [3]

;)
это самому ее писать надо


 
Anatoly Podgoretsky ©   (2002-04-09 21:21) [4]

Ее еще нет, напишешь, сделаешь хелп, подключишь его и только тогда сможешь ее находить



Страницы: 1 вся ветка

Текущий архив: 2002.04.22;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.01 c
6-69945
otari
2002-02-09 22:48
2002.04.22
Это очен интересно !!!


3-69743
Alexandr
2002-04-02 06:19
2002.04.22
Секретность в IB


14-69975
Van
2002-03-11 11:40
2002.04.22
как определить- закончена перекачка файла или нет?


1-69793
$hiC0
2002-04-10 13:49
2002.04.22
Снова PrintDialog возможно PrintersetupDialog :)


7-70039
Devid
2002-01-27 15:47
2002.04.22
Как из дельфи позвонить на другой комп