I want to print bar codes in access 2000 reports. I want to use the bar code that's in the Tally Printer I am using. The manufacture suggested this code:
10 REM code 39 barcode
20 LPRINT CHR$(27);"[?11~";
30 LPRINT CHR$(26);" F3;111";CHR$(25);
40 LPRINT CHR$(20);"*123*";CHR$(20);
50 LPRINT CHR$(27);"[?10~"
I tried this in a text box with the font set to "Free 3 to 9":
=Chr$(27) & Chr$(91) & Chr$(63) & '11' & Chr$(126) & Chr$(26) & ' F3' & Chr$(59) & '111' & Chr$(25) & Chr$(20) & Chr$(42) & ([iSaleID]) & Chr$(42) & Chr$(20) & Chr$(27) & Chr$(91) & Chr$(63) & '10' & Chr$(126)
Any thoughts?
Roger
10 REM code 39 barcode
20 LPRINT CHR$(27);"[?11~";
30 LPRINT CHR$(26);" F3;111";CHR$(25);
40 LPRINT CHR$(20);"*123*";CHR$(20);
50 LPRINT CHR$(27);"[?10~"
I tried this in a text box with the font set to "Free 3 to 9":
=Chr$(27) & Chr$(91) & Chr$(63) & '11' & Chr$(126) & Chr$(26) & ' F3' & Chr$(59) & '111' & Chr$(25) & Chr$(20) & Chr$(42) & ([iSaleID]) & Chr$(42) & Chr$(20) & Chr$(27) & Chr$(91) & Chr$(63) & '10' & Chr$(126)
Any thoughts?
Roger