Create barcodes in MS Access
Add Code 128 barcodes to your own Microsoft Access report.
Step 1. Import barcode functions: Click on External Data tab > Access and browse for barcodewiz.mdb. The default location of the file is:
C:\Program Files\BarCodeWiz Code 128 Fonts\Examples\barcodewiz.mdb


Step 2. Select FontFunctions from the Modules tab and click OK.

Step 3. Create a new table with barcode data. Name the table Items. (or simply use an existing table)
Our table has the following data:

Step 4. Create a new report: Click on Create tab > Report Design

Step 5. Set the Record Source property of the Report to Items (the name of our table).

Step 6. Insert a Text Box into the Detail section of the report. Change these properties:
Control Source: |
=BCW_Code128B([item_barcode]) |
Border Style: |
Transparent |
Font Name: |
BCW_Code128B_2 |
Font Size: |
24 |
Font Color: |
#000000 |
Add two more Text Boxes and change their Control Source to item_name and item_price, respectively.

Step 7. The report is now ready to save or print.

