After my last article on QR Codes:
Access - QR Code Generator
I saw a question in a forum which made me want to play around with QR Codes in Access. I’ve seen QR Code ActiveX controls for sale, solutions that use Excel and copy the generated code from there, … but I wanted something that could simply be integrated easily within Access (or any other application…
Continue reading →
I wanted to explore QR Code’s sibling, the Bar Code.
Now, for some bar codes you can install special fonts and simply use that font to display the bar code. That said, like with the QR Code generator I set out to see what I could do using the WebBrowser control so that I didn’t need to install anything, didn’t need to pay anything and didn’t require any special dependencies to work.
Google eventually led me to really impressive bar code javascript (js) library:
GitHub - lindell/JsBarcode: Barcode generation library written in JavaScript that works in both the browser and on Node.js
Barcode generation library written in JavaScript that works in both the browser and on Node.js - GitHub - lindell/JsBarcode: Barcode generation library written in JavaScript that works in both the ...
This js library already allows for all the following Bar Code types:
- CODE128
- CODE128 (automatic mode switching)
- CODE128 A/B/C (force mode)
- EAN
- EAN-13
- EAN-8
- EAN-5
- EAN-2
- UPC (A)
- UPC (E)
- CODE39
- ITF
- MSI
- MSI10
- MSI11
- MSI1010
- MSI1110
- Pharmacode
- Codabar
and, much, much more. Review the GitHub repo to learn more about all of its capabilities.
Thus, with this in hand and my QR Code Generator as a template I was all set!
Continue reading →