In an Object with a Mouse Down/Up or Move Event the Button Property will be Set to vbRightButton, when the Right Mouse Button is Pressed, ie.
Code:
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = vbRightButton Then
MsgBox "You Right Clicked the Form"
End If
End Sub