I assume an OCRed file would be text gotten from a picture.
So you need something to read the tiff file into text like an OCR (optical character recognition) control unless you have lots of time to write one.
Look then to be well edified when the fool delivers the madman - Shakespeare
1. Use the programmable Microsoft Office Document Imaging (2003 only) object model and viewer control to zone the image and perform OCR. The OCRed data can be accessed through the Layout object. See http://www.ilixis.com/developer/modi2.html
2. Once the OCRed data has been retrieved, use the Microsoft Office (all versions - I think) to create a new Word Document. Make sure that the Microsoft Word 11.0 Object Library (MSWORD.OLD) is included into your project. The code below can be used as a simple guide:
Dim objWord As Application
objword.Documents.Add (this should create a new document)
objWord........ (add content, etc.)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.