I am trying to do a popup menu and highlight the row that was selected on right click. I got it selected but how do I highlight it? heres the code...thanks
Private Sub grdRoster_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If Button = 2 Then
grdRoster.Row = grdRoster.MouseRow
PopupMenu mnuPopup
End If
End Sub
Private Sub grdRoster_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If Button = 2 Then
grdRoster.Row = grdRoster.MouseRow
PopupMenu mnuPopup
End If
End Sub