Reader for PDF-417 barcode

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dalehayward643
    New Member
    • Apr 2012
    • 1

    Reader for PDF-417 barcode

    Hello, all.

    I need to read PDF-417 barcode and display its data in textbox using a barcode scanner . Barcode is totally new to me. Plz help me!

    Thanks
  • cliffdyer234
    New Member
    • Mar 2012
    • 1

    #2
    Hi, you may need a 2D barcode scanner and barcode reading software. The barcode scanner just like a keyboard input the data (scanning the barcodes) and transfer to your PC. The barcode reading software will convert the barcode symbol to data.

    Comment

    • elvisbeson343
      New Member
      • Mar 2012
      • 1

      #3
      Set the code for scanner in the following format:
      Private Sub TextBox1_KeyDow n(ByVal sender As Object, ByVal e As System.Windows. Forms.KeyEventA rgs) Handles TextBox1.KeyDow n
      If e.KeyCode = Keys. Enter Then
      TextBox2.Focus( )
      End If
      End Sub

      Comment

      • rogergellar
        New Member
        • Jan 2013
        • 1

        #4
        if you are totally new to barcode, then I suggest you to download a PDF417 barcode scanner, which can scan the barcode and output it to data strings. Then you can use some codes to display those data strings in textbox.<Barcod elib>

        Comment

        Working...