Here:
Code:
Reply = MsgBox("Yes will continue, No will stop, and cancel will do nothing", 3, "Yes, No, and Cancel prompt")
If Reply = 6 Then 'they hit Yes
    MsgBox "You hit Yes"
ElseIf Reply = 7 Then 'they hit no
    MsgBox "You hit No"
Else
    MsgBox "You hit cancel"
End If
Good luck.

------------------
DiGiTaIErRoR
VB, QBasic, Iptscrae, HTML
Quote: There are no stupid questions, just stupid people.