MODI + MS Office Automation
Hi,
This can be done in 2 steps:
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.)
Regards.