I have a problem, I make a Yes/No message box and no matter what I answer the same thing happens:

MsgBox "Save current game?", vbYesNo, "Save", 0, 0

If vbYes Then frmSave.Show
If vbNo Then End

No matter what answer I choose the program ends. What is wrong here?

Thanks.