Have you looked at --
http://www.leadtools.com/
http://www.pegasusimaging.com/scanning.htm
http://www.twain.org/
Then consider this ---
Look at:
http://www.microsoft.com/downloads/d...ng=en#filelist
Set Reference to: Microsoft Windows Image Acquisition Library v2.0
Public Function scan()
Dim objDlg As Object
Dim objMgr As Object
Dim i As Integer
Set objDlg = CreateObject("WIA.CommonDialog")
Set objMgr = CreateObject("WIA.DeviceManager")
For i = 1 To objMgr.DeviceInfos.Count
Debug.Print objMgr.DeviceInfos(i).Properties("Name").Value & vbCrLf _
& "[ " & objMgr.DeviceInfos(i).DeviceID & " ]"
Next
End Function
Note: Then WIAAutSDK readme file says:
"The Windows Image Acquisition Library v2.0 is only designed to support the
PNG, BMP, JPG, GIF and TIFF image formats. It should not be relied upon to
support other formats, though they may appear to be supported depending on
system configuration."
Some helpful sites:
http://www.ilixis.com/developer/modi.html
http://home.earthlink.net/~ritter/tiff/#whatis
---
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
Over 1125 users have come to me from the newsgroups requesting help
(E-Mail Removed)
"Malc Payne" <(E-Mail Removed)> wrote in message
news:B5246E1E-35BB-42C1-BF33-(E-Mail Removed)...
>I am trying to control a scanner from within Access, allowing users to
>select
> account details etc. and scan documents for storage and later retrieval. I
> have been checking out a number of products that claim to allow this, but
> never quite achieve was I want. I've looked at ScanDLL50 from Informatik
> which is an activeX control but am not sure if this will work with Access.
> Has anyone used this product and if so, can you tell me how to use it?