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.
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.