Link to home
Start Free TrialLog in
Avatar of SCMHC
SCMHC

asked on

Why does the save diaglog box appear when the document is opened for printing only. No changes to the document was made.

I have several word documents that I open, print and close from an Excel macro.  The macro works perfectly except for on document which hangs up because before the document closes, the save dialog box opens and is waiting for a response.  I have re-typed this document several times and each time this document does the same thing.  How can I get this document to close without saving.  I have unchecked everything in the Options.  Below is the vba code and attached is the document.
thanks all for the assist.

Dim TotDocs As Integer
Dim MyDoc As String

Sub Button1_Click()
TotDocs = Sheets("Info").Range("a1")
For Count = 1 To TotDocs
    MyDoc = Sheets("Documents").Range("A" & Count)
    Set wrdApp = CreateObject("word.application")
    Set wrdDoc = wrdApp.Documents.Open(MyDoc)
    wrdDoc.PrintOut
    wrdDoc.Close
    wrdApp.Quit
Next Count

End Sub
305a---Appendix-A-Self-Preservat.docx
ASKER CERTIFIED SOLUTION
Avatar of GrahamSkan
GrahamSkan
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of SCMHC
SCMHC

ASKER

thank you so, so much...that works perfectly...I was so wrapped up in solving why the document needed to be saved, I couldn't see the tree through the forest...
thanks again :-)