D
delphibird
Unregistered / Unconfirmed
GUEST, unregistred user!
请看下面一段程序:
for i:=0 to 10do
begin
.......
if i=2 then
begin
showmessage('出错');
exit;
end;
end;
当I=2时,为了防止程序出错,用了EXIT 语句,可是FOR I :=0 TO 10这个
循环就不往下继续运行了。请问各位有什么办法,既可以防止程序出错,又可以
让先程序继续往下运行?
for i:=0 to 10do
begin
.......
if i=2 then
begin
showmessage('出错');
exit;
end;
end;
当I=2时,为了防止程序出错,用了EXIT 语句,可是FOR I :=0 TO 10这个
循环就不往下继续运行了。请问各位有什么办法,既可以防止程序出错,又可以
让先程序继续往下运行?