H
harmer
Unregistered / Unconfirmed
GUEST, unregistred user!
在一query的循环中,如何执行以下操作?
也就是每一次循环都要等到wb为true才能再执行下面事件,
query1.open;
query1.first;
for i:=0 to query1.RecordCount do
begin
...在这里如何等到外部一变量wb传回true时才让他执行? //此处如何做?
比如在此等候10秒,才继续执行
if wb=true then
begin
end;
next;
end;
也就是每一次循环都要等到wb为true才能再执行下面事件,
query1.open;
query1.first;
for i:=0 to query1.RecordCount do
begin
...在这里如何等到外部一变量wb传回true时才让他执行? //此处如何做?
比如在此等候10秒,才继续执行
if wb=true then
begin
end;
next;
end;