摘要:
RDLC就一个RowNumber的函数能用来做序号,但是往往我们更需要的是分组序号 在RDLC中, 只能用vb 来写。代码如下:Dim count As IntegerDim GroupName As StringPublic Function GroupCount(name As String) As IntegerIf (GroupName = "") Thencount = 1GroupName = nameGroupCount = countExit FunctionEnd IfIf (GroupName = name) Thencount = count + 1E 阅读全文