Accessing Document Imaging Progrmatically

  • Thread starter Thread starter Magnus
  • Start date Start date
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.
 
You may want to post this in one of the Office developer newsgroups
since that's where the automation gurus tend to hang out. :-)

--
Please post all follow-up questions to the newsgroup. Requests for
assistance by email can not be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/
 

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

Back
Top