编译时出现的这个错误怎解决?
这个错误怎解决?画图时转换坐标时产生的。Operator not applicable to this operand type 这是错误提示
var
pts:array[1..100] of Tpoint;
shu[1..100] :array of double ;
maxvalue,minvalue:double ;
//////////////////////////////以上变量定义在implement前/////////
..............
i:integer;
begin
for i:=1 to 100 do
begin
..........
pts[i].Y:=form1.ClientHeight-((shu[i]-minvalue)*form1.ClientHeight div (maxvalue-minvalue));//////////这行错误
............
end;