Can I modify the modality of a message box? I have, in my code:
Response = MsgBox(“To format this table, place your cursor in the first cell and select OK.”, vbOKCancel + vbQuestion + vbDefaultButton2, “Insert Module Outline”)
If Response = vbCancel Then Exit Sub
If the user has their cursor in a part of the document other than the first cell of a table, I want them to be able to move it to the first cell without canceling.