Hi,
I am using this code to sort.
Dim dataBand As Stimulsoft.Report.Components.StiDataBand = _
report.Pages(0).Components("DataBand2")
dataBand.Sort = New String() {"DESC", "SecuredCount"}
The code above only sort by one field. How can I sort 2 or more fields ?
Thank you.
Sorting Multiple Fields by Code
Sorting Multiple Fields by Code
Sort by 3 Fields:
Code: Select all
dataBand.Sort = New String() {"DESC", "SecuredCount", "ASC", "ProductCode", "ASC", "OrderCode"}
Sorting Multiple Fields by Code
Thanks a lot..me real noob