MsgBox “Please press OK button”
If MsgBox(“Please press OK button”,vbOkCancel) = vbOK Then
MsgBox “OK was pressed”
Else
MsgBox “Cancel was pressed”
End If