Results 1 to 7 of 7

Thread: document scanning with access?

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2000
    Posts
    770

    document scanning with access?

    How can I setup document scanning with an access db. I want the option to scan a document or multiple documents as apart of the data entry process using Access forums and controls.

  2. #2
    Don't Panic! Ecniv's Avatar
    Join Date
    Nov 2000
    Location
    Amsterdam...
    Posts
    5,343
    Word docs?? (I assume)

    I guess that there are three options:
    1) See if there is already software out there which does what you want and allows you to use with access
    2) Office automation - open word and scan through the doc via code. This would be either to specific points or using Word VBA
    3) Forget it...

    If you have the time available or it is very neccessary, mess around with recording macros in word and using that code as a base.

    Note to code from Access to Word you may need to use a reference to the VBA or experiment with objects (the better but harder way).

    Vince

    BOFH Now, BOFH Past, Information on duplicates

    Feeling like a fly on the inside of a closed window (Thunk!)
    If I post a lot, it is because I am bored at work! ;D Or stuck...
    * Anything I post can be only my opinion. Advice etc is up to you to persue...

  3. #3

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2000
    Posts
    770
    Uh.... How do you get "Word Doc" out of Document Scanning... Do you know what Document scanning is?

    You take a physical paper document, and scan it, and it gets stored in a database for quick retrival/reference.

    This has nothing to do with word documents what so ever!

    Thanks

  4. #4
    Don't Panic! Ecniv's Avatar
    Join Date
    Nov 2000
    Location
    Amsterdam...
    Posts
    5,343
    Ok,

    So you have probably a couple of choices:
    1) Scan docs, store as pics on a hd, and store the pointer to them in access
    2) upgrade to sql server and follow the tutorial Beacon made (top threads)
    3) Use software already written to do this... there are several around
    4) Obtain info on API calls to scan and then convert the file into Access, but I wouldn't recommend this as each scan is going to be big and the final mdb would be huge and slow...

    Document scanning -
    scanning paper to electronic
    scanning through word doc for certain data / references
    I took it to be the second type

    Vince

    BOFH Now, BOFH Past, Information on duplicates

    Feeling like a fly on the inside of a closed window (Thunk!)
    If I post a lot, it is because I am bored at work! ;D Or stuck...
    * Anything I post can be only my opinion. Advice etc is up to you to persue...

  5. #5

    Thread Starter
    Fanatic Member
    Join Date
    Sep 2000
    Posts
    770
    Alright, your fired... Wise guy.

    What I am really looking for is some kina of free or relatively cheap ActiveX control to access the TWIAN Scan Manager so that the images can be easily scanned and imported into the database with a click of a button.

    But since you aparently dont really know any such active controls, that answers my question. I will just have to keep searching I guess.

    scanning through word doc for certain data / references
    I took it to be the second type
    Wouldn't that be called Parsing?

  6. #6
    Don't Panic! Ecniv's Avatar
    Join Date
    Nov 2000
    Location
    Amsterdam...
    Posts
    5,343
    http://15seconds.com/component/free.htm

    Most sites I had a quick search (I am meant to be working) asked for 1 grand usd or more, mighty expensive!!

    The link above has one webtwain, but maybe it will do what you need - or point you other sites...

    Good luck in your hunt


    Vince

    BOFH Now, BOFH Past, Information on duplicates

    Feeling like a fly on the inside of a closed window (Thunk!)
    If I post a lot, it is because I am bored at work! ;D Or stuck...
    * Anything I post can be only my opinion. Advice etc is up to you to persue...

  7. #7
    Hyperactive Member
    Join Date
    Apr 2001
    Location
    N42 29.340 W71 53.215
    Posts
    422

    Kodak, Wang Imgscan,ocx ?

    Several years ago I wrote a VB app that used the Kodak imgscan.ocx, imgadmin.ocx and imgedit.ocx files.

    If these are available to you try them out.

    I don't remember much about how it worked, but here's a chunk of code from the "Scan It" button event:
    Code:
        ' Setup properties for the ImgScan1 obj. for ref. only:
        ImgScan1.FileType = TIFF
        ImgScan1.Image = New_ScanFileName       ' writes out pages to TempScan.tif
        ImgScan1.MultiPage = True
        ImgScan1.PageOption = CreateNewFile
        ImgScan1.ScanTo = FileOnly
        ImgScan1.ShowSetupBeforeScan = False    ' prevent that screen from appearing
        ImgScan1.PageType = BlackAndWhite       ' (won't allow this? #3 instead)
        ImgScan1.CompressionType = CCITTGroup4_2d_Fax   ' ~35K/page
    
        ' Scanner is automatically opened
    
        If ImgScan1.ScannerAvailable Then
            ' 1st check if New_Scan.tif exists, if so, delete it
             If File_Exists(New_ScanFileName) Then Kill New_ScanFileName
            ImgScan1.StartScan
    
            ImgScan1.CloseScanner
            ' scan is now if file New_ScanFileName
    Hope this helps, DaveBo
    "The wise man doesn't know all the answers, but he knows where to find them."
    VBForums is one place, but for the really important stuff ... here's a clue 1Tim3:15

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width