Dim pr As Row = Tables("项目登记表").current
If pr IsNot Nothing AndAlso pr.IsNull("项目名称") = False Then
Dim dr As Row = Table("项目名称").find("[项目名称]='" & pr("项目名称") & "' ")
If dr Is Nothing Then
Dim sr As Row =Tables("项目名称").AddNew()
sr("项目名称") = pr("项目名称")
Else
MessageBox.Show("此项目已经存在!")
End If
End If