Search found 3 matches

by JackWooten
Thu Aug 04 2005
Forum: Visual Basic Community
Topic: Printing using wdPrintRangeofPages not working w/ converter
Replies: 3
Views: 10878

Joan,

Thank you for the reply. After some more investigation, the problem seems to be in the document itself. I can create another doc and get the proper action.

Thank you again.

Jack.
by JackWooten
Wed Aug 03 2005
Forum: Visual Basic Community
Topic: Printing using wdPrintRangeofPages not working w/ converter
Replies: 3
Views: 10878

Re: Printing using wdPrintRangeofPages not working w/ conver

wd.PrintOut(background:=True, range:=Word.WdPrintOutRange.wdPrintRangeOfPages, outputfilename:=newPath, pages:="1-45") Should actually read: wd.PrintOut(background:=True, range:=Word.WdPrintOutRange.wdPrintRangeOfPages, outputfilename:=newPath, pages:="1-" & pages.ToString()...
by JackWooten
Wed Aug 03 2005
Forum: Visual Basic Community
Topic: Printing using wdPrintRangeofPages not working w/ converter
Replies: 3
Views: 10878

Printing using wdPrintRangeofPages not working w/ converter

I am currently trying to automate the printing of a word doc that is 91 pages long. The .doc has a bookmark ("Print") defined to show the print range. As you can see below, I am finding the value of the bookmark and passing it to the .PrintOut call. In debug I can see that the value is &qu...