Hi Arun.
> What is the equivalent of IsSubTotal command in .net?
_flex.Rows[i].IsNode
> How can we draw border around cells in .net?
> In activeX we used CellBorder, wherein we can set different color,
> different width etc of border for different cells.
That is the one feature in the ActiveX control that is not supported in the
..NET version. We do have a sample called CellBorders (attached) that shows
how you can do it using OwnerDraw.
> How can we set subtotal rows Fixed so that when we scroll the screen
> Subtotal rows is always visible
You can change the number of fixed rows by setting
_flex.Rows.Fixed = n.
> Is there any utility that convert program from activeX to .net?
No, sorry.
If your program is big, you may want to use the Classic version of the grid
instead of the regular version. The classic is a wrapper that implements an
object model similar to the old ActiveX, and should allow you to use
virtually the same code. Also, we do ship the source o the classic version,
you may want to refer to that and use it as a guide when converting old
projects.