任何想要生成QRCode的人都找到解决方案了。答案是Barcodesoft QRCode软件。
QRCode也称为快速响应代码。 QRCode是2D矩阵条形码符号系統。
QRCode矩阵大小介于21 X 21模块和177 x 177模块之间。每个模块都是黑色或白色的正方形。
QRCode可以编码字母数字和标点字符。它还可以编码8位JIS字符和汉字字符(Shift JIS字符)。 Model 2 QRCode最多可容纳1500个日文或者汉字字符。
QRCode的模块放置算法使QRCode特殊。 QRCode使用Reed Solomon算法进行错误检查和纠正。 QRCode有4种不同的纠错级别可供选择:L07,M15,Q25和H30。更高级别意味着更少的數據容量和更少的解码错误机会。
您可以使用Barcodesoft QRCode编码器或crUFLbcs.dll在Windows PC上编码數據。
即使使用“Demo”水印,Barcodesoft QRCode Demo也能完全发挥作用。
如果您使用的是非日语操作系統,并且想要将QRCode条形码符号扫描到Windows应用程序中,请使用Barcodesoft Keyboard Wedge Emulation程序。它拦截RS-232端口信号并模拟键盘输入。
序列号 | 预定义格式 | 序列号 | 预定义格式 |
---|---|---|---|
1 | 21 x 21 | 21 | 101 x 101 |
2 | 25 x 25 | 22 | 105 x 105 |
3 | 29 x 29 | 23 | 109 x 109 |
4 | 33 x 33 | 24 | 113 x 113 |
5 | 37 x 37 | 25 | 117 x 117 |
6 | 41 x 41 | 26 | 121 x 121 |
7 | 45 x 45 | 27 | 125 x 125 |
8 | 49 x 49 | 28 | 129 x 129 |
9 | 53 x 53 | 29 | 133 x 133 |
10 | 57 x 57 | 30 | 137 x 137 |
11 | 61 x 61 | 31 | 141 x 141 |
12 | 65 x 65 | 32 | 145 x 145 |
13 | 69 x 69 | 33 | 149 x 149 |
14 | 73 x 73 | 34 | 153 x 153 |
15 | 77 x 77 | 35 | 157 x 157 |
16 | 81 x 81 | 36 | 161 x 161 |
17 | 85 x 85 | 37 | 165 x 165 |
18 | 89 x 89 | 38 | 169 x 169 |
19 | 93 x 93 | 39 | 173 x 173 |
20 | 97 x 97 | 40 | 177 x 177 |
許可版本 | 單用戶版 | 五用戶版 | 十用戶版 | 現場許可證 | 公司版 | 開發者版 | 五開發者版 | 十開發者版 | 無限制開發者版 |
---|---|---|---|---|---|---|---|---|---|
價格 | CAD299 | CAD399 | CAD599 | CAD799 | CAD999 | CAD1199 | CAD1399 | CAD1999 | CAD2999 |
安装了 Barcodesoft QRCode 软件之后, 可以轻松地在 Microsoft® Access® 中列印 QRCode 條碼。
1. 在電腦上安装展示版本Barcodesoft QRCode 软件。
2. 右鍵單擊命令提示符並以管理員身份運行命令提示符。
鍵入以下命令以註冊 cruflbcs.dll
cd "C:\Program Files (x86)\Common Files\Barcodesoft\FontUtil"
regsvr32.exe cruflbcs.dll
要註冊 64 位 DLL,請輸入以下命令 cruflbcs_x64.dll
cd "C:\Program Files (x86)\Common Files\Barcodesoft\FontUtil"
%systemroot%\System32\regsvr32.exe cruflbcs_x64.dll
如果您看到以下窗口彈出,則您的註冊成功。
3. 啟動 Microsoft® Access®.
如果閣下使用 Access 2000 或者 2003, 请点击菜单===> 工具 ==> 宏 ===> 安全性。 选择低安全级别。
如果閣下使用 Access 2007 / 2010 / 2013 / 2016 / 2019, 请点击 Microsoft Office 按钮。
然后点击选项 ==> 信任中心 ==> 宏命令设置, 选择 "允许所有宏"。如下所示。
4. 按 ALT + F11 打开 Microsoft® Visual Basic 編輯器。
5. Visual Basic 編輯器中, 选择菜单工具 ===> 參攷。 会谈处一个对话框。 点击浏览按钮, 然后从以下目录中选择 cruflbcs.dll
C:\Program File (x86)\CommonFiles\Barcodesoft\Fontutil。
选择对 crUFLBcs 4.0 添加參攷。然后点击 OK 按钮。
6. 按 Ctrl+M, 会弹出一个对话框, 从以下目录上选择 barcodesoft.bas
C:\Program File (x86)\CommonFiles\Barcodesoft\Fontutil 。然后点击 "打开"。
如果閣下没有 barcodesoft.bas, 请从这里下載 QRCode。
你也可以复制以下的VBA代码片断
Public Function QRCode(strToEncode As String) As String
Dim obj As cruflBCS.CQRCode
Set obj = New cruflBCS.CQRCode
QRCode = obj.EncodeCR(strToEncode, 0, 0, 0)
;第一个参数是需要编码的字符串。
;第二个参数是序列号。设置为 1。
;第三个参数是预定义的格式。设置为0,系統会自动选择合适的格式。
;第四个参数是纠错级别,设置为0,系統会采用默认纠错级别23%
Set obj = Nothing
End Function
7. 关闭 Visual Basic 回到 Access 資料庫。在设计模式下创建一个文本框。然后在其控制源中输入以下宏命令:
=qrcode([data.code])
请注意以上宏命令中 'data' 是資料庫中表的名字,'code'是字段的名字。
8. 右键点击文本框点。从上下文菜单中选择属性。将BcsQRCode设置为字體。閣下的資料庫报告中就会出现QRCode。
Microsoft和Office徽标是Microsoft Corporation在美国和/或其他国家/地区的商标或注册商标。
cd "C:\Program Files (x86)\Common Files\Barcodesoft\FontUtil"
regsvr32.exe cruflbcs.dll
cd "C:\Program Files (x86)\Common Files\Barcodesoft\FontUtil"
%systemroot%\System32\regsvr32.exe cruflbcs_x64.dll
cd "C:\Program Files (x86)\Common Files\Barcodesoft\FontUtil"
regsvr32.exe cruflbcs.dll
cd "C:\Program Files (x86)\Common Files\Barcodesoft\FontUtil"
%systemroot%\System32\regsvr32.exe cruflbcs_x64.dll