为什么我遍历表的时候会出现跳记录?(50分)

  • 主题发起人 主题发起人 心动痕迹
  • 开始时间 开始时间

心动痕迹

Unregistered / Unconfirmed
GUEST, unregistred user!
with table6 do
begin
disablecontrols;
first;
while not table6.eof do
begin
with table7 do
begin
disablecontrols;
first;
while not table7.eof do
begin
if (fieldbyname('s_no').asstring=table6.FieldByName('s_no').asstring)
and(table6.fieldbyname('biaozhi').value=true) then
begin
open;
edit;
delete;
end;
table7.next;
end;
table7.enablecontrols;
end;
table6.next;
end;
table6.enablecontrols;
end;
就是上面的代码,比如在table7中明明已经有连续的四条记录都符合条件,应该都将其
删除 ,可是却只是删除了其中的两条,并且还是相隔的,很明显的跳记录,为什么会这样呢?
table6中的索引是s_no,table7中设置了双索引s_no&c_no.
 
把 table7.next;去掉试试
 
呵呵,我已经解决了,才看到你的答案.
我的解决方法是:
把table7.next删除,
加入:
else
table7.next
 

Similar threads

S
回复
0
查看
696
SUNSTONE的Delphi笔记
S
S
回复
0
查看
656
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部