questo è un esempio di come controllare i buttoni del mouse , ma penso non sia applicabile al tuo discorso (webbrowser), dovresti studiare le API di windows , magari ti permettono di risolvere il problema.

codice:
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 1 Then
    MsgBox ("tasto sinistro")
     Else
        If Button = 2 Then
        MsgBox ("tasto destro")
            Else
                If Button = 4 Then
                MsgBox ("tasto centrale")
                End If
        End If
End If