Built an document scanning application

  • Thread starter Thread starter Ajit
  • Start date Start date
A

Ajit

I am to start working on a new application
to scan multiple document using ASP.NET/VB.NET

If anyone can give me any lead/tips/suggession as to how to do this
it will be of great help and i will take it from there.
 
Little more detail.. what do you mean multiple document scanning? Like to a
repository? processing? what?

To start with scanning, research TWAIN.
 
Actually we are a Financial Institution
and we have many clients with lots of document for each one

Its difficult to maintain paperwork for each one of them

so we want to scan each document(single page or multiple pages) and store it
into a folder designated to that client.

So, i want to write an application which will instruct user to feed docs in
scanner and then start scanning
seamlessly and store it to a folder with the user specified doc name.

If anyone has done this or can provide me with some general idea as to how
this can be done is highly appreciated.

thx.
 
If you intend to use a TWAIN device (scanner) here is a link to some VB.NET
code to help you get started. (Watch for word-wrap)

http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=1551&lngWI
d=10

This code allows you to use the scanner's software to do your scanning. You
can change it to use your own UI elements, but, then you are introducing
something that is unfamiliar to your users. Unless, you want only certain
settings and not allowing anything else (letting your user customize the
scanner settings) then I think it is better to let them use the scanner's
software as it is more familiar to them.
james
 
If your a financial institution I'm sure you have a commercial copier with
scanning capability on it right?

If so, read your docs on your copier, most of that stuff is built into most
modern day (commercial) copiers. We just did the same thing here, wrote a
VB.NET app for a front end to search the respository documents, but left the
scanning and sorting to the copier.

-CJ
 
In our organisation, we opted to use HP 9100 Digital Senders. These can scan
in one or more documents and automatically produce a PDF file (colour or
black & white) that is placed in a designated directory on the network or
can be sent directly to someone's email address from the scanner. The
sender itself sits on a network IP and all of the scanning/PDF creation is
handled by the scanner itself. Everything is fully configurable via a
software utilities and it also has a built-in configuration utility that can
be accessed directly with a web browser. The sender also has a number of
user configurable buttons each of which can be configured to send the
document to different locations on the network (i.e. for different types of
document etc.)...

http://h10010.www1.hp.com/wwpc/us/en/sm/WF25a/15179-64175-64404-12126-64404-25324.html

For the cost of buying the specialised hardware, it saved us hours of having
to design and build scanning functionality into our application. All we have
needed to do is to write some functionality that enables the user to view
and select the created PDF files which they then 'attach' to specific
policies within our system.

If you haven't already bought any scanning hardware then is definitely
something I would recommend looking into. I understand that some
photocopiers also have add-on modules that enable them to do the same sort
of thing.

Gary
 
Ajit said:
I am to start working on a new application
to scan multiple document using ASP.NET/VB.NET

If anyone can give me any lead/tips/suggession as to how to do this
it will be of great help and i will take it from there.

Why are you writing this application yourself? There are a lot of
products on the market that can do this for you, I have used Ascent
Capture by Kofax on a couple of projects and it is excellent. Products
almost always work out cheaper than a development project [in the case
where suiatable products exists, which in this case they do], I would
suggest you look into them before embarking on development.
 
Back
Top