소스 코드는 다음과 같습니다.
type
recTest = record
AAA : Array[0..3] of char;
BBB : Array[0..10] of char;
CCC : Array[0..4] of char;
end;
버튼클릭 이벤트에 다음과 같이 썼습니다.
var
rTest : recTest;
sSendData : String;
begin
FillChar(rTest, SizeOf(rTest), ' ');
with rTest do
begin
AAA := '1234';
BBB := 'ABCDEFGHIJ';
CCC := '!@#$';
end;
SetLength(sSendData, SizeOf(rTest));
Move(rTest, sSendData[1], SizeOf(rTest));
RichEdit1.Lines.Add('['+IntToStr(Length(sSendData))+']['+sSendData+']'); // <-- 에러 발생
end;
에러 내용은 RichEdit line insert error라고 나는데...
하루종일 이걸 해결못하고 있어요...
고수님들...좀 알려 주세요...