If e.DataCol.Name = "DateTimePicker3" Then
If e.DataRow.IsNull("DateTimePicker3") Then
e.DataRow("TextBox2") = Nothing
Else
Dim bh As String = Format(e.DataRow("DateTimePicker3"),"yyyyMMdd") '取得编号的8位前缀
If e.DataRow("TextBox2").StartsWith(bh) = False '如果编号的前8位不符
Dim max As String
Dim idx As Integer
max = e.DataTable.Compute("Max("TextBox2")",""DateTimePicker3" = #" & e.DataRow("DateTimePicker3") & "#") '取得该天的最大编号
If max > "" Then '如果存在最大编号
idx = CInt(max.Substring(9,3)) + 1 '获得最大编号的后三位顺序号,并加1
Else
idx = 1 '否则顺序号等于1
End If
e.DataRow("TextBox2") = bh & "-" & Format(idx,"000")
End If
End If
End If
红色标记的代码在取得最大值的时候提示错误?
实在不知道错在哪里,请大家给予指点。谢谢!
:)已经找到错误,正确写法:max = e.DataTable.Compute("Max(TextBox2)","DateTimePicker3 = #" & e.DataRow("DateTimePicker3") & "#") '取得该天的最大编号
[此贴子已经被作者于2012-3-11 15:59:11编辑过]