create a YES or NO msgbox
simply pops up an msgbox with a yes or no choice below (very simple)
Rate create a YES or NO msgbox
(5(5 Vote))
dim a as integer
a% = msgbox("Message box message ;-)",10+10)
if a% = 6 then '6 indicates a YES
msgbox "yes was choosen"
else
msgbox "no was choosen"
end if
create a YES or NO msgbox Comments
No comments yet — be the first to post one!
Post a Comment