P
Poul Erik Jacobsen
Is it possible to use Access to create barcodes? If so, how?
Arvin Meyer said:Some barcodes don't require any special characters. Some have check digits.
The most complete explanations I've ever found is at:
http://www.adams1.com/pub/russadam/share.html
Many of the scanner companies have instructions as well. I use Code 39 which
simply requires an asterisk as the start and end character, so I use a query
column to prepare my data for reading with the scanner, or printing:
NewID: "*" & Format([MemberID],"0000") & "*"
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
Angus said:Then if i use barcode fonts instead of Active X does it mean it won't take
care about the start pattern, stop pattern, check digit, etc... that would
make my barcode not correct?