How can I read a value from a barcode reader?
|
|
In my experience a barcode reader acts as a HID and mimics a keyboard. When a barcode is read, it is sent to the OS and to the app as a sequence of keystrokes. So the best way to capture that info is often to create a text field and set focus to it in anticipation of receiving a barcode. Or if you want to be crafty you could just listen for keystroke events in your app and record them silently or something. As Renaud pointed out, some barcode readers can emit "announcement" data before the actual data, but in my experience this is not consistent. If you can ensure all your users will have the same model reader, this can be a very helpful route to take. Otherwise, maybe not. |
||||
|
Most barcode readers are HID devices: they act just like a keyboard and return keystrokes, as if they were typed on a keyboard. Method 1 For those, you can basically catch all keyboard activity for a given input field where users can either enter the bar code manually or using a barcode reader. Method 2 Another method is to program the bar code reader to use a special prefix sequence before sending the barcode string. Your program then catches all keystrokes at the application-level and if it detects this prefix, then it knows that the remaining characters are a bar code. Bar code readers can always be programmed using either a software or some special barcodes you'll find in their user manual.
Other types of bar code readers may have some special interface and special drivers, or they could communicate over RS232, but I don't believe there is a standard for those (except the most simple RS232 interface) and communicating with them will properly require a special SDK or drivers from the manufacturer. In most cases though, for handheld readers, the methods above are all you need. |
|||||||||
|
|
Most of the barcode readers I regularly use will act as a keyboard wedge which means that scanned data appears as if typed on the keyboard. To capture this we use two methods.
We use hand held scanners that are able to scan both 1D and 2D codes and are configurable as to which codes will be recognised. There are also serial attached readers available which I have no experience of but you would require serial communication routines and the necessary communication protocol to be implemented. The reader can be connected to the PC in a number of ways.
|
|||
|
|
|
A barcode scanner can operate in two modes
To get it into the latter you will need to 'program' the device (most likely using a special barcode in the manual) and connect to it using
This code is specific to the one I have used (Metrologic) so YMMV. |
|||||||
|
|
It really depends on the make of the reader. Some readers, f.ex. "field readers" (i.e. readers who're stand alone, and not hooked up to any other hardware when in use), will store some the reads in XML, or a large text-file. Some readers will return the bar code simply like a string - which is what the barcode is in the end, a string represented by bars. |
|||
|
|
|
Prior to this, I've worked with barcode reading technologies. Aspose.Barcode is by far the best value and the best to work with. You can read and create barcodes. An excellent buy and piece of software. http://www.aspose.com/categories/visual-components/aspose.barcode-for-.net-and-java/default.aspx |
|||
|
|