バイナリファイルを読み込んで結果をメモに表示したいのですが、「互換性のない型: 'string' and 'Array'」というエラーの対処方法がわかりません。コードは次のとおりです。
unit yo;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Memo1: TMemo;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
F: TFileStream;
Buffer: array [0 .. 1023] of byte;
begin
F := TFileStream.Create(ExtractFilePath(Application.ExeName)
+ 'yo.exe', fmOpenRead);
while F.Position < F.Size do
begin
F.Read(Buffer, 1024);
Memo1.Lines.Add(Buffer);
end;
F.Free;
end;
このエラーを回避し、エラーなしでプログラムを実行できましたか?
誰でも私を助けることができますか?