怎样定位到不是空白记录的最后一行呢?
Dim t As Table = Tables("表A")Dim fdr As DataRow = t.DataTable.Find("第一列 Is not null", "_Sortkey desc")If fdr IsNot Nothing Then t.Position = t.FindRow(fdr)End If