
how to implement column header sorting using MS Hierarchical flex grid
Caveat: I'm assuming Hflexgrid works like flexgrid
in the MouseDown event...
With MSFlexGrid1
If .MouseRow > 0 Then
if Button = vbleftbutton then
.Sort = SortAscending
elseif Button = vbrightbutton then
.Sort = SortDescending
endif
endif
end with
Steve
is there a way to implement one click column header sorting in flex
grids..similar to the behavior available in outlook for example..where
clicking
on the column header causes an ascending/descending sort to occur based on
that
column....i don't see exactly how to trap a click on a specific column
header
using the MSHFlexGrid..thanks