以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  通过try捕捉错误以后  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=192328)

--  作者:newsun2k
--  发布时间:2024/6/14 15:03:00
--  通过try捕捉错误以后
通过try捕捉错误,我希望要么不报错误,要么报完错误,继续循环执行。
就是以前vb6中好像有一个有错误继续执行的指令。
我们有么?
try
for i = 1 to 1000
                .....
        next
catch
end try

--  作者:有点蓝
--  发布时间:2024/6/14 15:05:00
--  
放到循环里面

for i = 1 to 1000
try
                .....
catch
end try
        next