vb.net Try 错误导致 For Each 循环中断

2022/5/29 23:20:40

本文主要是介绍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

 

这 到哪 说理去呀

 



这篇关于vb.net Try 错误导致 For Each 循环中断的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程