I'm trying to identify what is the current display mode of my wingrid. i.e Is it in groupby mode or normal mode?
Hi you could try something like this:
boolmyGridIsInGroupByMode = True
Exit For
Next
That would work... but there is really no reason to loop, since all the rows will either be GroupBy rows or not.
Easier to just check this:
ultraGrid1.Rows.IsGroupByRows
Thanks, That worked a treat.