I have a VBScript that does some operations in Word, and due to the size of the document I'm manipulating, when my script finally forces an exit from Word (via "objWord.Documents.Close" followed by "objWord.Quit"
, I am given the prompt "You placed a large amount of text on the Clipboard. Do you want this text to be available to other applications after you quit Word?"
Is there a way to force it to not send this prompt, or to pound through it? I've already set "objWord.DisplayAlerts = False", but the prompt still comes up. I also checked the docs for Word's .Quit method, and none of the arguments say anything about telling Word whether or not to abandon the clipboard.
Is there a way to force it to not send this prompt, or to pound through it? I've already set "objWord.DisplayAlerts = False", but the prompt still comes up. I also checked the docs for Word's .Quit method, and none of the arguments say anything about telling Word whether or not to abandon the clipboard.