안녕하세요
다름이 아니오라 아래 소스중
이부분(DogData := @buffer[1];)
에서 에러가 발생됩니다
고수님들의 답변부탁드리니다.
procedure TForm1.FormActivate(Sender: TObject);
var
DogData:^byte;
buffer: array[0..12] of char;
begin
buffer:=' ';
// 에러발생위치 및 메세지
DogData := @buffer[1]; // <<== incompirtable type "byte" and "char" error
----
----
----
end;
// Delphi 5,7 에서 테스트 했는데 에러 안나는데요
// 이상하네...
// ^Byte를 PChar 로 바꾸어서 해보세요
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
// DogData: PChar;
DogData: ^Byte;
buffer: array[0..9] of char;
i: Integer;
begin
buffer := '0123456789';
for i := 0 to high(buffer) do
begin
DogData := @buffer[i];
ShowMessage(Char(DogData^));
end;
end;
end.