以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  如何用按钮删除表中 未保存的行  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=31787)

--  作者:gohtml
--  发布时间:2013/4/20 14:01:00
--  如何用按钮删除表中 未保存的行
如何用按钮删除表中未被保存的行
--  作者:XYT
--  发布时间:2013/4/20 14:07:00
--  
For Each dr As DataRow In dt.DataRows
            If dr.RowState=DataRowstate.added Then
                dr.delete
            End If
        Next
    Else \'否则退出
        MessageBox.Show("请点击保存按钮保存","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
        Return
       
    End If
End If