-
MsFlexGrid
I am using a MsFlexgrid to display a list of data.When I right click on the grid a popup menu to delete a record is displayed. If there is only one record in the grid it gets focus but if there is more than one record in the grid I cannot switch between records, that is the records don't change focus.
-
If you could give some code I'll play around with it and see if I can help.
-
hi molema, try this
Code:
Private Sub MSFlexGrid1_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If Button = vbRightButton Then MSFlexGrid1.Row = MSFlexGrid1.MouseRow
End Sub
hope this does it for you :)