Harkon
01-10-2005, 04:26 AM
Is it possible to select a row in one of those two FlexGrids using the right button click?
Private Sub MSHFlexGrid1_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If Button = vbRightButton Then
MsgBox "Row: " & MSHFlexGrid1.Row
End If
End Sub
it always gives me the same row and I would like to make a seperate selection using right click for a popupmenu.
any help would be appreciated.
Private Sub MSHFlexGrid1_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If Button = vbRightButton Then
MsgBox "Row: " & MSHFlexGrid1.Row
End If
End Sub
it always gives me the same row and I would like to make a seperate selection using right click for a popupmenu.
any help would be appreciated.