写在无损_检验批表单的DataColChanged事件,提示这个
编译错误:没有可访问的“Compute”接受此数目的参数,因此重载决策失败。
错误代码:cnt=DataTables("无损检验批").Compute("Count(“工程编号")","工程编号="&pr("工程编号”)&""and 检测状态 is null")
(图片不知怎么上传不了)
If e.DataCol.name = "检测状态" Then
Dim pr As DataRow = e.DataRow.GetParentRow("无损_工程主表")
If pr IsNot Nothing Then
Dim cnt As Integer
cnt = DataTables("无损_检验批").Compute("Count("工程编号")", "工程编号 = '" & pr("工程编号") & "' and 检测状态 is null")
If cnt = 0 Then
pr("检测状态") = "完结"
Else
pr("检测状态") = ""
End If
End If
End If
[此贴子已经被作者于2018/6/25 9:03:46编辑过]