错误信息
.NET Framework 版本:2.0.50727.5485
Foxtable 版本:2018.3.9.1
错误所在事件:
详细错误信息:
数据类型 ntext 和 varchar 在 equal to 运算符中不兼容。
.NET Framework 版本:2.0.50727.5485
Foxtable 版本:2018.3.9.1
错误所在事件:窗口,单价管理,But单价编辑,Click
详细错误信息:
未将对象引用设置到对象的实例。
以下是代码,不知道那里出错了。
Dim tb As Table = Tables(e.Form.Name & "_Table1")
Dim r As Row = tb.Current
If tb.Current Is Nothing OrElse tb.Cols.Contains("第一列") Then Return
Dim cmd As new SQLCommand
cmd.C
cmd.CommandText = "Sel ect * From {OA签核表} Where [需签人] = '" & _UserName & "' and [权限] = '发起' and [签核状态] = '待签' and [单据编号] = '" & r("单据编号") & "'"
MessageBox.Show(cmd.CommandText)
Dim Sqldt As DataTable = cmd.ExecuteReader
If Sqldt.DataRows.Count = 0 Then
MessageBox.Show("只能修改自己发起的流程")
Else
Vars("单据编号") = r("单据编号")
Forms("单价编辑").open
End If