Accessing Document Imaging Progrmatically

M

Magnus

Hello

I've am using C# to open a .tif and perform OCR like this:

Process proc = new Process();

proc.StartInfo.FileName = @"../mspview.exe";
proc.StartInfo.Arguments = @"\o";
proc.StartInfo.Arguments = @"myImg.tiff";
proc.Start();

This duly works, opens up imaging and performs OCR. But
how do I send the text to Word programtically?
I'm using Office 2002.

Thanks.
 

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