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

Вниз

Не могу считать файл в буфер!   Найти похожие ветки 

 
Frozzen   (2004-12-10 18:45) [0]

Уже взял текст с хелпа

var
 iFileHandle: Integer;
 iFileLength: Integer;
 iBytesRead: Integer;
 Buffer: PChar;
 i: Integer;
begin
 if OpenDialog1.Execute then
 begin
   try
     iFileHandle := FileOpen(OpenDialog1.FileName, fmOpenRead);
     iFileLength := FileSeek(iFileHandle,0,2);
     FileSeek(iFileHandle,0,0);
     Buffer := PChar(AllocMem(iFileLength + 1));
     iBytesRead := FileRead(iFileHandle, Buffer, iFileLength);
     FileClose(iFileHandle);

     for i := 0 to iBytesRead-1 do
     begin
       ShowMessage(IntToStr(Integer(Buffer[i])));

       при таком обращении выдает ошибку
и дебагером содержимое буфера не отображает
   
     end;
   finally
     FreeMem(Buffer);
   end;
 end;


 
DiamondShark ©   (2004-12-10 18:52) [1]

Не обманывай, ни с какого "хелпа" такую ерунду взять нельзя.

iBytesRead := FileRead(iFileHandle, Buffer^, iFileLength);


 
Frozzen   (2004-12-10 18:57) [2]

Delphi6 help на функцию FileRead example


 
Frozzen   (2004-12-10 18:58) [3]

Delphi6 help на функцию FileRead example


 
Fay ©   (2004-12-10 19:01) [4]

В 5-ке тоже 8)


 
DiamondShark ©   (2004-12-10 19:10) [5]

Ну что ж... От очепяток никто не застрахован.


 
8ung   (2004-12-10 19:14) [6]

Ошибка!
iBytesRead := FileRead(iFileHandle, Buffer^, iFileLength);


 
Fay ©   (2004-12-10 19:15) [7]

2 8ung   (10.12.04 19:14) [6]
Где?!!!
8)


 
8ung   (2004-12-10 19:17) [8]

iBytesRead := FileRead(iFileHandle, Buffer^, iFileLength);
Посмотри, что в примере написано, а что у меня!



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

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

Наверх




Память: 0.48 MB
Время: 0.033 c
3-1101977596
makz
2004-12-02 11:53
2004.12.26
SQL как данные


1-1102777296
VasRog
2004-12-11 18:01
2004.12.26
Ссылки


1-1102867259
Elc_
2004-12-12 19:00
2004.12.26
Dll MDIForm


4-1100151730
Delph
2004-11-11 08:42
2004.12.26
Блокировка щелчка мышью в заголовке окна (формы)


1-1102682085
xman
2004-12-10 15:34
2004.12.26
TImage