K
kasa
Unregistered / Unconfirmed
GUEST, unregistred user!
以下代码在qry_cx 有多条记录(两条或以上)。运行没问题,可是当只有一条数据时
就提示指针错误!是什么原因?怎么解决? 为什么把TFastLineSeries换成TBarSeries
就不会发生相同的问题?
Myline:TFastLineSeries;
begin
Myline:=TFastLineSeries.Create( Self );
Myline.ParentChart:=Chart1;
Myline.marks.Visible:=false;
while not qry_cx.Eofdo
begin
Myline.add(qry_cx.fields[2].asfloat,qry_cx.fields[2].asstring);
qry_cx.next;
end;
myline:=nil;
就提示指针错误!是什么原因?怎么解决? 为什么把TFastLineSeries换成TBarSeries
就不会发生相同的问题?
Myline:TFastLineSeries;
begin
Myline:=TFastLineSeries.Create( Self );
Myline.ParentChart:=Chart1;
Myline.marks.Visible:=false;
while not qry_cx.Eofdo
begin
Myline.add(qry_cx.fields[2].asfloat,qry_cx.fields[2].asstring);
qry_cx.next;
end;
myline:=nil;