Jul 18, 2007 #1 GelC Technical User Oct 3, 2006 93 US Hi guys, How can I disable close button on message box? I tried this but it didn't work, Thanks for any help Code: MsgBox "No result found. Please try again", vbInformation, "No record found" CloseButton(vbIformation) = False GelC
Hi guys, How can I disable close button on message box? I tried this but it didn't work, Thanks for any help Code: MsgBox "No result found. Please try again", vbInformation, "No record found" CloseButton(vbIformation) = False GelC
Jul 18, 2007 #2 Crowley16 Technical User Jan 21, 2004 6,931 GB you can't, as far as I know. what you can do is to build your own messageBox form, and use that instead. -------------------- Procrastinate Now! Upvote 0 Downvote
you can't, as far as I know. what you can do is to build your own messageBox form, and use that instead. -------------------- Procrastinate Now!
Jul 18, 2007 #3 fneily Instructor Apr 5, 2002 2,538 US msgbox "This will disable the X button!", vbOKOnly Upvote 0 Downvote