In a Sub I open a new document based on a specific template with:
Dim TargetDoc As Word.Document
Set TargetDoc = Documents.Add(Template:=”T:WordTemplatesRequest.dot”)
‘
‘ some more code
‘
TargetDoc.ActiveWindow.View.Type = wdPrintView
TargetDoc.SaveAs FileName:=”C:TestRequest.doc”
TargetDoc.Close
The problem is that, to my surprise, after opening Request.doc is shown in Normal view, despite of the first line with View.Type above. Manually applying View | PrintView and then saving & closing again seems to cure the problem: re-opening shows the doc in Printview. Can anyone shed some light at this?