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

 

这 到哪 说理去呀

 

posted on 2022-05-29 21:15  boy8199  阅读(168)  评论(0编辑  收藏  举报