Sub MessageBoxAnswer()
Dim intAnswer As Integer
intAnswer = msgBox("Are You Sure?", vbYesNoCancel + vbQuestion, _
"Please Respond")
Select Case intAnswer
Case vbYes
msgBox "I'm Glad You are Sure!!"
Case vbNo
msgBox "Why Aren't You Sure??"
Case vbCancel
msgBox "You Coward! You Bailed Out!!"
End Select
End Sub