Results 1 to 3 of 3
  1. #1
    CCOutlet is offline Novice
    Windows 10 Access 2007
    Join Date
    Aug 2017
    Posts
    1

    Question Can I Setup Access to Automatically Print a Label with a Specific Record on Scanning a Barcode?

    So I would like to setup Access to automatically print the value from the stock number record in my inventory database when I scan the serial number for a particular piece of inventory. Our inventory already contains the serial numbers, so I need Access to search the database, find the correct serial, and then automatically print the corresponding stock number on a Dymo LabelManager USB. The barcode scanner I have is a Symbol LS2208 and the version of Access is 2007.



    How would I go about doing this? From what I've found via Google it appears that it will take a bit of programming, but I'm not sure exactly how to go about doing that since I haven't been able to find anyone with a similar situation.

    If necessary I can upgrade to a newer version of Access or switch out the label maker or barcode scanner as needed.

    Thanks in advance!

  2. #2
    aytee111 is offline Competent At Times
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2011
    Location
    Nomad
    Posts
    3,936
    First, set it up manually - create the query and the report and get it working. Then in the appropriate event, at the time of the scan, print the report (either thru VBA or a macro).

  3. #3
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,525
    youd scan then load, then print.
    the form would be a continous form of all records. Textbox barcode in header.

    'after the scan, barcode is in textbox
    Code:
    vID = Dlookup("[ID]","table","[barcode]='" & txtBarcode & "'")
    if isNull(vID) then
       msgbox "Record not found"
    else
      me.filter = "[id]=" & vid
      me.filterON = true
      
      docmd.openreport "rLabel"
    endif

Please reply to this thread with any new information or opinions.

Similar Threads

  1. label printers setup
    By merlin2049er in forum Access
    Replies: 1
    Last Post: 09-18-2015, 09:17 AM
  2. Replies: 2
    Last Post: 05-23-2015, 09:40 AM
  3. Replies: 6
    Last Post: 11-13-2014, 01:44 PM
  4. Replies: 4
    Last Post: 08-11-2014, 01:18 PM
  5. Employee time clock with barcode scanning
    By trevor40 in forum Programming
    Replies: 2
    Last Post: 03-26-2014, 10:54 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums