Hi,
I have one more problem. I am converting a VB application in to Dot Net. In VB earlier FPSpread is used to display the data and now we are using UltraGrid. The problem is while sorting coloumns in FPSpread, we can mention the range of coloumns to be sorted as given below:
fpObjects.SortKey(1) = COL_SEVERITYHIDDEN
fpObjects.col = 1
fpObjects.Col2 = fpObjects.MaxCols (in present case 7)
fpObjects.Row = 1
fpObjects.Row2 = fpObjects.MaxRows (in present case 6)
fpObjects.Action = ActionSort
The description for fpObjects.col and fpObjects.Col2 given in fpspread are "Sets or returns a specific column or specifies the first column of a block of cells on which an operation is to occur." and "Sets or returns the last column of a block of cells on which an operation is to occur."
Do we have any such properties in Ultra Grid, where we can sort a particular range of coloumns i.e., from coloumn 1 to 7 and from Row 1 to 6.
Thanks,
Pradeep