Creating TIFFs programmatically from a Word 2003 Document object (

C

Cybergoose

(Newbie question)
I have a VB6 application that currently uses an unsupported driver for
saving a document object as a TIF file. I was wondering if it is possible to
use Office 2003's Document Imaging Writer to use the document object as a tif
file.

The current project uses Microsoft Word 11.0 Object Library (I think Office
XP) and calls the MailMerge.Execute method of the ActiveDocument and then
uses the PrintOut method with the unsupported print driver to do the
conversion of the ActiveDocument object to TIFF. Something like...

.............................................................

With WordObj.ActiveDocument.MailMerge
.OpenDataSource sDataFile,,,True
.DataSource.FirstRecord = 1
.Destination = wdSendToNewDocument
.SuppressBlankLines = True
.Execute
End With

Word.ActivePrinter = gsImprintPrinterName

WordObj.ActiveDocument.PrintOut False

.............................................................

Any assistance would be GREATLY appreciated. I will be happy to provide you
with more information if needed.

THANK YOU!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top