I am using VBScript, part of the script will open a Word document in the background and print it to a print then close. I would like to print to one sheet if the document spills over to a second page. Is there a way to use the Shrink to fit option through VBScript. Here is how I am currently printing:
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Open(DoctoPrint)
objDoc.PrintOut()
objWord.Quit wdDoNotSaveChanges
Thanks.
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Open(DoctoPrint)
objDoc.PrintOut()
objWord.Quit wdDoNotSaveChanges
Thanks.