I haven't used the MSHFlexGrid, but I imagine you would do a For...Each on the rows collection. Inside that loop (on the row object) you'd look at the column in question and add it's value to a variable.
Something like:
[tt]
curTotal = 0
For Each MyRow in MyMSHFlexGrid
curTotal = curTotal + MyRow.Column("Amount"
Next MyRow
[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.