puoi usare l'evento mouseup, che però è da gestire anche sui bottoni:
codice:
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, & _
                         X As Single, Y As Single)

    If Button = 2 Then
       MsgBox "Ho cliccato il tasto destro!"
    End If

End Sub