Reputation: 5478
I'm looking to leverage MS Office scanning functionality in my .NET application. Although I know that MODI COM objects can be accessed in .NET, I'm not sure how to make that. All I need is scanning to file and getting path of that file.
I don't need any OCR.
Upvotes: 0
Views: 3838
Reputation: 8129
If you just need scanning, not OCR, you don't need MODI. Just use TWAIN or WIA.
Here are two codeproject articles explaining more details:
http://www.codeproject.com/KB/dotnet/twaindotnet.aspx
http://www.codeproject.com/kb/dotnet/wiascriptingdotnet.aspx
This one talks a little bit about MODI
http://www.codeproject.com/KB/office/modi.aspx
Upvotes: 1