Printout

F

Fay

It seems that the Printout method doesn't print:

DocWord.ActiveDocument.Printout

Is that all I have to do? How can I toubleshoot my problem.
DocWord.ActiveDocument.Printout causes an interruption.

Thanks
 
D

Doug Robbins - Word MVP

Hi Fay,

It depends what DocWord is.

It is probably better though to Dim an object that you set to a document by
using either

Set DocObject = DocWord.Documents.Add("Template")

or

Set DocObject = DocWord.Documents.Open("filename")

and then use

DocObject.PrintOut

Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 
Top