vb.net Try 错误导致 For Each 循环中断
作者:互联网
vb.net Try 错误导致 For Each 循环中断
使用 xdocument 里的 xelement 去 循环填充控件.
for each x in xe.xelements
try
groupbox1.controls(x.name.tostring).text = x.value.tostring
Catch ex As Exception
debug.print(x.name.tostring)
End Try
next
结果 只要出现错误, 就会导致 for each 出现中断
vb.net 竟然 无法完成 on error resume next 继续执行
百度了半天 没有找到方案,后来想了一下 再加一层try catch
for each x in xe.xelements
try
try
groupbox1.controls(x.name.tostring).text = x.value.tostring
Catch ex As Exception
debug.print(x.name.tostring)
End Try
catch ex as exception
end try
next
这 到哪 说理去呀
标签:try,vb,name,Try,tostring,ex,Each 来源: https://www.cnblogs.com/MadeInChinese/p/16324898.html