create a YES or NO msgbox
simply pops up an msgbox with a yes or no choice below (very simple) Original Author: sean mckeown Code dim a as integera% = msgbox(“Message box message ;-)”,10+10)if a% = 6 then ‘6 indicates a YESmsgbox “yes was choosen”elsemsgbox “no was choosen”end if