I'd like a confirm dialog to appear on button click, so when the user clicks 'yes', the on click event should continue and when the user click 'no', the event should stop.
Priavte Sub yourButtonName_Click()
If MsgBox("You clickt the fecking button, do you want to continue?", vbYesNo) = vbYes Then
[COLOR=Green] 'do your thing[/COLOR]
End If
End Sub