Results 1 to 2 of 2
  1. #1
    Cesar333 is offline Novice
    Windows 10 Access 2016
    Join Date
    Nov 2016
    Posts
    1

    Need help building a form

    Hello all. Very new here and I would like some guidance on building a form for my company's employee equipment sign-out sheets. What I am looking to do is put barcode labels on pieces of equipment that an employee will use on a daily basis and also on their company badges. The employee would have to scan their badge and then scan the tool that they would to use. The form would date/time stamp they check out of the equipment. It also has to block anyone else from checking in/out tool.

    I already have the barcode fonts for access and the scanning gun. I assume i would have to create 2 different tables? 1-employees, 2-equipment?

    At the end of all this i would like to have a report built for the entire shift.



    Any help would be greatly appreciated.

  2. #2
    CJ_London is online now VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,845
    You would need 3 tables

    tblEmployees

    EmployeePK autonumber
    EmployeeBarCode number/text depending on code - use your barcode font on this field to generate your barcode labels
    EmployeeName text
    ...
    ...

    tblEquipment
    EquipmentPK autonumber
    EquipmentBarCode number/text depending on code - use your barcode font on this field to generate your barcode labels
    EquipmentName text
    ...
    ...

    tblIssues
    IssuePK autonumber
    EmployeeFK long
    EquipmentFK long
    Issued Boolean - yes means issued out, No means returned
    IssueDT datetime - default=now()

    barcode readers are just like any input device and they can be configured to issue a carriage return when triggered to automatically go to the next control. Your form would be based on the tblIssues table and you will need vba code to 'translate' the read barcode to the appropriate PK.

    You could use the barcode as a PK instead of autonumber, but I don't recommend it since it might get reused.

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

Similar Threads

  1. Replies: 41
    Last Post: 11-04-2016, 11:09 AM
  2. Building Access Form
    By chalupabatman in forum Forms
    Replies: 20
    Last Post: 08-16-2016, 05:29 PM
  3. building a search form in Access 2010
    By Milade8080 in forum Forms
    Replies: 8
    Last Post: 07-13-2014, 10:49 AM
  4. Replies: 3
    Last Post: 07-10-2013, 10:29 AM
  5. Building Input Form Based on Two Tables
    By tx_developer in forum Forms
    Replies: 4
    Last Post: 07-28-2012, 01:51 PM

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