Function makeMsgBox(mtitle, mess, icon, buts, defbut, mods) butVal = buts + (icon * 16) + (defbut * 256) + (mods * 4096) makeMsgBox = MsgBox(mess, butVal, mtitle) End Function