Printing Barcodes

  • Thread starter Thread starter Robert Benakoun
  • Start date Start date
R

Robert Benakoun

If anyone out there knows how to print bar code labels
using Access, would you please direct me to where I can
get that information.

Thank you
 
Robert Benakoun said:
If anyone out there knows how to print bar code labels
using Access, would you please direct me to where I can
get that information.

In my applications I just downloaded a free 3 of 9 Barcode font from the internet and
used it on a TextBox on a report. Then all I had to do was add an asterisk to the
beginning and end of the output.

= "*" & [MyField] & "*"
 
The easiest way to print bar codes from an Access database would be to
use a bar code ActiveX control that is designed specifically for this
purpose.
With a bar code ActiveX control, you just drop the control into a
report, bind it to a field in a table or query and when you print your
report, the bar codes get printed automatically for you.

The best bar code ActiveX control available is from TAL Technologies.
Visit the following URL for more information:
http://www.taltech.com/TALtech_web/products/activex_barcodes.html
You can download a demo version of the TAL Bar Code ActiveX control
from the above web page. The demo comes with a sample Access database
that demonstrates how to use the control in Access to print bar code
labels.
 
Back
Top