各位老师下午好!!!我在“文件管理”的表属性的“datacolchanged"事件中的代码如下,当”文号前缀“和”年号“都不为空时,不知怎么总是不能运行”ELSE“以下的代码?请老师帮忙修改指导一下,谢谢老师们,辛苦了!!
If e.DataCol.name ="文件序号" Then
Dim dr As DataRow=e.DataRow
If dr.Isnull("文号前缀") Then
MessageBox.Show("文号前缀和文件年号不能为空值!", "提示")
e.Cancel = True
End If
Else
Dim qz As String = e.DataRow("文号前缀")
MessageBox.show(qz)
Dim nh As String = e.DataRow("年号")
Dim xh As String = e.DataRow("文件序号")
e.DataRow("文号") = qz & "【" & nh & "】" & xh & "号"
End If