Dim fdr As DataRow = DataTables("表A").find("", "_Identify desc")
Dim ndr As DataRow = DataTables("表A").AddNew()If fdr IsNot Nothing Then For Each dc As DataCol In DataTables("表A").DataCols ndr(dc.Name) = fdr(dc.name) NextEnd If