BAR CODE in Access 2002

D

D.M

In the main form, near the field X (unique personal number for example
2901977100035) I want to add button who is going to print that number in bar
code format EAN 128 on the printer label A4.
If you know how am I going to do this, please contact me on this newsgroup.
Thanks
 
A

Arvin Meyer

Make a report using a Bar Code Font to run on the label printer. Use a
standard where clause in the open report code for your button:

DoCmd.OpenReport "MyLabel", , "IDfield = " & Me.txtID

substituting the appropriate field and control names.

A good place to get bar code information is:

http://www.adams1.com/pub/russadam/share.html

They can also point you to where you can get barcode fonts for EAN 128
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top