F
Frank Stone
hi,
if the msgbox only has ok, you didn't take it far enough.
to get yes/no use this:
msgbox("your message",vbYesNo,"msgbox title")
Use as you discribed you might want to put it in an if
statement:
If msgbox("message",vbYesNo,"msgbox title") = vbyes then
do this
else
do that
end if
if the msgbox only has ok, you didn't take it far enough.
to get yes/no use this:
msgbox("your message",vbYesNo,"msgbox title")
Use as you discribed you might want to put it in an if
statement:
If msgbox("message",vbYesNo,"msgbox title") = vbyes then
do this
else
do that
end if