-1
你可以幫我解決我在導航BindingSource中的問題。Bindingsource中EOF的等價物是什麼?
我想用的BindingSource
Do Until recordSet.EOF
if isnull(resordSet!FieldName)=true then
recordSet.delete
end if
recordset.movenext
loop
你可以幫我解決我在導航BindingSource中的問題。Bindingsource中EOF的等價物是什麼?
我想用的BindingSource
Do Until recordSet.EOF
if isnull(resordSet!FieldName)=true then
recordSet.delete
end if
recordset.movenext
loop
這個VB6代碼轉換成vb.net您可以BindingSource.Clear
更換整個循環:
的清除方法去除基礎列表 所有元素由List屬性表示並將Count屬性設置爲零。
此方法引發ListChanged事件。
我不是清除吶的BindingSource我想是這樣的:做,直到recordSet.EOF 如果ISNULL(!resordSet字段名)= true,那麼 recordSet.delete 結束時,如果 recordset.movenext 循環轉換此代碼 – Dennis 2012-02-01 05:12:18
該循環清除記錄集。如果該記錄集綁定到一個控件(如您的問題所暗示),那麼它們具有相同的效果。如果不是,我建議你讓你的問題更清楚。 – 2012-02-01 05:13:52