Im trying to get a message box to display a Yes or No question and depending on the answer, will operate a function.

Its not working properly, and I dont know why. my code is as follows:

VB Code:
  1. Private Sub Form_Load()
  2.  
  3. Msgbox "Have you played this game before", vbYesNo, "Attention!"
  4.  
  5. If (vbMsgboxResult.vbNo = "No") Then
  6.  
  7. cmd_hack.Enabled = False
  8. cmd_start.Enabled = False
  9.  
  10. End If
  11. End Sub

It's giving me an error message when I press No... I think its something with the If statement... could anyone possibly help?