TMS TDBAdvGrid component에서 UTF-8으로 설정된 DB의 Memo 칼럼의 한글이 깨어질 경우 해결 방법
DBAdvGrid.pas의 아래 코드를
if not ShowMemoFields then
begin
Value := ‘(MEMO)’
end
else
Value := aField.AsString;
다음과 같이 수정
if not ShowMemoFields then
begin
Value := ‘(MEMO)’
end
else
Value := Utf8ToAnsi(aField.AsString);