473,406 Members | 2,619 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Scanning data into Access 2000

Zen
I'm using Access 2000, and I'd like to know if there is a way to use a
scanner (flatbed, doc-feed, etc) to scan forms with OMR or OCR software, and
have the data be automatically (or if not automatically then using a macro
or other means) entered into tables. I guess the real question is do I need
to use an expensive program to do this or is it codable suing Access/VB, and
if it is codable, any suggestions as to how to start?

Many thanks for taking time to read this.

Joe
Nov 12 '05 #1
4 3191
It is possible and no need to purchase any additional software. In
fact, this can be real easy if the data layout is identical such as
scanning in all your purchase orders.

Not knowing your scanning software, you can save all the results to the
same directory. Then have MS-Access scan that directory and import the
files into the related tables(s). In fact Access can even remember what
files are loaded and can delete the old files after a certain amount of time
(if desired). This should prevent duplication.

I have never messed with scanned data but have a procedure (module) that
performs the import process which I have for several applications for myself
and clients. If you are strong in VBA then its pretty easy to follow. I
can send you a copy (for free) if you want to look at the code.

--
Dean Covey
www.coveyaccounting.com

MS-Office Certified:
http://www.microsoft.com/learning/mc...st/default.asp

"Zen" <ze*******@cfl.rr.com> wrote in message
news:8n**********************@twister.tampabay.rr. com...
I'm using Access 2000, and I'd like to know if there is a way to use a
scanner (flatbed, doc-feed, etc) to scan forms with OMR or OCR software, and have the data be automatically (or if not automatically then using a macro
or other means) entered into tables. I guess the real question is do I need to use an expensive program to do this or is it codable suing Access/VB, and if it is codable, any suggestions as to how to start?

Many thanks for taking time to read this.

Joe

Nov 12 '05 #2
In your application there needs to be some kind of gap-filler to get
you from the OCR software to Access. Off-the-shelf software may exist
for that, but somehow you have to make the jump from OCR to Access.

I did a *bit* of OCR scanning some years ago (so the software may have
improved), and a lot of data parsing (slicing and dicing text files
into Access). My response is heavily influenced by those two factors,
so I could be completely off base.

In my experience OCR scanning is prone to recognition errors and
formatting errors so that you can't tell in advance where on a page
the scanned text will appear. Again, the software may have improved
since I did this type of work, but if your body of data is substantial
enough for you to be thinking in terms of a database then you're
thinking about a lot of data, and even a 1% error rate equates to a
lot of reworking.

If you're able to get reliable scans and can save the scanned file to
a text file, then you can easily write VBA code from within Access to
read the text file and store the data to database records. A lot
depends on the format of the data: you may even be able to import the
text file.

Hope this clears the water, as opposed to muddying it for you.

Dave O
"Zen" <ze*******@cfl.rr.com> wrote in message news:<8n**********************@twister.tampabay.rr .com>...
I'm using Access 2000, and I'd like to know if there is a way to use a
scanner (flatbed, doc-feed, etc) to scan forms with OMR or OCR software, and
have the data be automatically (or if not automatically then using a macro
or other means) entered into tables. I guess the real question is do I need
to use an expensive program to do this or is it codable suing Access/VB, and
if it is codable, any suggestions as to how to start?

Many thanks for taking time to read this.

Joe

Nov 12 '05 #3
Zen
Thank you Dean. I've been doing a lot of research into this and I think it
will be easier than I first thought. The scanner software is very good
these days and all the data scanned will be mostly yes/no questions using
identical forms. That module would be of great help for ideas on how to
import the data. If you can email it to me I would certainly appreciate it.

Thanks again,

Joe
"Dean Covey" <nospam> wrote in message
news:ve********************@comcast.com...
It is possible and no need to purchase any additional software. In
fact, this can be real easy if the data layout is identical such as
scanning in all your purchase orders.

Not knowing your scanning software, you can save all the results to the same directory. Then have MS-Access scan that directory and import the
files into the related tables(s). In fact Access can even remember what
files are loaded and can delete the old files after a certain amount of time (if desired). This should prevent duplication.

I have never messed with scanned data but have a procedure (module) that performs the import process which I have for several applications for myself and clients. If you are strong in VBA then its pretty easy to follow. I
can send you a copy (for free) if you want to look at the code.

--
Dean Covey
www.coveyaccounting.com

MS-Office Certified:
http://www.microsoft.com/learning/mc...st/default.asp

"Zen" <ze*******@cfl.rr.com> wrote in message
news:8n**********************@twister.tampabay.rr. com...
I'm using Access 2000, and I'd like to know if there is a way to use a
scanner (flatbed, doc-feed, etc) to scan forms with OMR or OCR software,

and
have the data be automatically (or if not automatically then using a macro or other means) entered into tables. I guess the real question is do I

need
to use an expensive program to do this or is it codable suing Access/VB,

and
if it is codable, any suggestions as to how to start?

Many thanks for taking time to read this.

Joe


Nov 12 '05 #4
Zen
Yes Dave, this does clear things up. Thanks for your reply. As I said in
my other reply to Dean the scanner software is very good these days and the
data scanned will be mostly yes/no questions using identical forms, so
errors should be almost nil (I hope!). I should be able to save the files
to CSV and then import them to Access. Thank you again for your help.

Joe
"Dave O" <Cy******@yahoo.com> wrote in message
news:74**************************@posting.google.c om...
In your application there needs to be some kind of gap-filler to get
you from the OCR software to Access. Off-the-shelf software may exist
for that, but somehow you have to make the jump from OCR to Access.

I did a *bit* of OCR scanning some years ago (so the software may have
improved), and a lot of data parsing (slicing and dicing text files
into Access). My response is heavily influenced by those two factors,
so I could be completely off base.

In my experience OCR scanning is prone to recognition errors and
formatting errors so that you can't tell in advance where on a page
the scanned text will appear. Again, the software may have improved
since I did this type of work, but if your body of data is substantial
enough for you to be thinking in terms of a database then you're
thinking about a lot of data, and even a 1% error rate equates to a
lot of reworking.

If you're able to get reliable scans and can save the scanned file to
a text file, then you can easily write VBA code from within Access to
read the text file and store the data to database records. A lot
depends on the format of the data: you may even be able to import the
text file.

Hope this clears the water, as opposed to muddying it for you.

Dave O
"Zen" <ze*******@cfl.rr.com> wrote in message

news:<8n**********************@twister.tampabay.rr .com>...
I'm using Access 2000, and I'd like to know if there is a way to use a
scanner (flatbed, doc-feed, etc) to scan forms with OMR or OCR software, and have the data be automatically (or if not automatically then using a macro or other means) entered into tables. I guess the real question is do I need to use an expensive program to do this or is it codable suing Access/VB, and if it is codable, any suggestions as to how to start?

Many thanks for taking time to read this.

Joe

Nov 12 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: CHANGE username to westes | last post by:
What are the most popular, and well supported, libraries of drivers for bar code scanners that include a Visual Basic and C/C++ API? My requirements are: - Must allow an application to be...
3
by: Kenneth Courville | last post by:
Hello, This problem has been a little unusual for me. I have an Access database, and, on several forms, I've seen this issue occur wotj listbox and combobox controls. Basically, I'm just...
4
by: Zen | last post by:
I'm using Access 2000, and I'd like to know if there is a way to use a scanner (flatbed, doc-feed, etc) to scan forms with OMR or OCR software, and have the data be automatically (or if not...
1
by: Mantorok | last post by:
Hi all Does anyone here have to use VS on a machine that has "on-access" virus scanning? We have Read/Write scanning turned on on our desktops and we're pretty sure that it is killing VS and...
6
by: Bob Alston | last post by:
I am looking for others who have built systems to scan documents, index them and then make them accessible from an Access database. My environment is a nonprofit with about 20-25 case workers who...
0
by: JP | last post by:
Hello: I am using VB 6.0 with a Windows XP Professional environment. I am also using Access 2000. I am currently building a program and need reporting capabilities. So, I started a Data...
2
by: nmrpa91290 | last post by:
Hi, I am in the design phase of building a database that will track the productivity of my warehouse. I am thinking of using a barcode scanner to assist me with this. Employees will hopefully...
1
by: daniell | last post by:
Hello, Can anyone tell me how scanning a barcode into ms access works? I am trying to build a database that when a bar code is scanned, it will auto populate a form based on code. Can anyone...
2
by: iheartvba | last post by:
Hi Guys, I have been using EzTwain Pro to scan documents into my access program. It allows me to specify the location I want the Doc to go to. It also allows me to set the name of the document...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.