Custom msgbox help needed!!!
thanks for the reply but i have already figured it out !!!...
if anybody wants to know how send me an email to
Jarious[dot]com[at]gmail[dot]com
--
---
zz [MX]
cuasi-musico,semi-poeta y loco
"Simon Lloyd" wrote in
message ...
Hi not sure entirely what you want to do but this is how to make use of
Yes, No and Cancel from a message box:
Code:
--------------------
Sub Mbox()
Select Case MsgBox("What Now", vbYesNoCancel, "Decision Maker")
Case vbYes
MsgBox "Good"
Case vbNo
MsgBox "Bad"
Case vbCancel
MsgBox "Ugly"
End Select
End Sub
--------------------
Hope this helps,
Regards,
Simon
--
Simon Lloyd
|