已OK谢谢老师,能说下为什么会被查杀吗
还有一个新的问题:
Select e.DataCol.Name
Case "cpmc"
If e.DataRow.IsNull("cpmc") Then
e.DataRow("xuhao") = Nothing
Else
Dim lb As String = e.DataRow("cpmc")
If e.DataRow("xuhao").StartsWith(lb) = False '如果单据编号前缀不符
Dim max As String
Dim idx As Integer
max = e.DataTable.Compute("Max(xuhao)","cpmc = '" & lb & "' And [_Identify] <> " & e.DataRow("_Identify")) '取得该类别的最大编号
If max > "" Then '如果存在最大编号
idx = CInt(max.Substring(lb.Length)) + 1 '获得最大编号的后三位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
e.DataRow("xuhao") = lb.Substring(5,2) & Format(idx,"000000")
End If
End If
End Select
如上代码是希望做到自动编号的,开始用的时候能用的,编到10个以后自动编号编出来的是第一个的序号,请问怎么修改