hi
do you know how can i change backColor of a selected cell in MSHFlexGrid
and if I select another cell then the color of previously selected cell should
become White and color of newly selected cell should become Red.
Thanks...(in advance)
Printable View
hi
do you know how can i change backColor of a selected cell in MSHFlexGrid
and if I select another cell then the color of previously selected cell should
become White and color of newly selected cell should become Red.
Thanks...(in advance)
"Ritesh" <riteshindian2000@yahoo.com> wrote:
>
>hi
>do you know how can i change backColor of a selected cell in MSHFlexGrid
>and if I select another cell then the color of previously selected cell
should
>become White and color of newly selected cell should become Red.
>
>Thanks...(in advance)
>
hi ritesh .. copy the code in the following two events
Private Sub MSHFlexGrid1_EnterCell()
MSHFlexGrid1.CellBackColor = vbRed
End Sub
Private Sub MSHFlexGrid1_LeaveCell()
MSHFlexGrid1.CellBackColor = vbWhite
End Sub
mshflexi