我在 Delphi 10.2 中使用快速报告 6。当我将 quickreport 源路径添加到库路径时,我在 qrpdffilt.pas 上收到不兼容的类型错误。
Var
P: ^ pos2table;
Buff: array of ansichar;
d: dword;
RGBCol:TRGBColor;
PColor: TColor;
Pos2table is of type packed array
Incompatible types issue comes for following lines
P:=@Buff[d];
RGBCol:=pcolor;
有什么解决办法吗?