Bindingsource中的EOF相当于什么?

时间:2012-02-01 05:06:28

标签: vb.net winforms

你能帮我解决导航BindingSource的问题。

我想使用BindingSource

在vb.net中转换此vb6代码
Do Until recordSet.EOF
   if isnull(resordSet!FieldName)=true then
      recordSet.delete
   end if
 recordset.movenext
loop

1 个答案:

答案 0 :(得分:0)

您可以使用BindingSource.Clear替换整个循环:

  

Clear方法从基础列表中删除所有元素   由List属性表示,并将Count属性设置为零。

     

此方法引发ListChanged事件。