-- SQLfind错误提示
此主题相关图片如下:错误截图2.png
在表时间的DataColChanged事件中把find改成sqlfind后为何会出现这个错误提示呢
If e.DataCol.name = "工程名称" Then
If e.DataRow.IsNull("工程名称") = False Then
Dim dr As DataRow = DataTables("进度表").SQLFind("工程名称 = \'" & e.DataRow("合同工程名称") & "\'")
If dr IsNot Nothing Then
dr("工程编码") = e.DataRow("工程编码")
dr.Load()
End If
End If
End If
此主题相关图片如下:错误截图.png