How to create qr code in clarion report?

Marcelo, this qr code is very easy to read, even when I reduce it to 3x3cm. I’m using clarion 11 13788, I’m interested in how you did it in clarion, is there any template or some dll like qrcoder.dll that I use. I see that this qr code is much easier to read than the one I make via qrcoder.dll.

Try this

loc:data = 'https://sandbox.suf.purs.gov.rs/v/?vl=A0taREJLWUVLS1pEQktZRUu7AAAAlAAAAIDCZwAAAAAAAAABf36Hgr4AAACeo5kO7EAMw0Ro54%2FFTd2RzfHfH0eyfV0q%2BHaZjiA5gESojZVjoSbqCrkGXXcIzor2I82KfTDeZCwJLOXmKhOR9X4EBZGjxfZ16PcDoveH%2B6o1YWGEjb4ZAX8RyUQ%2Br6ZT4RUr7p4D8Q5YoQrsD%2BEx%2FUS6xDM2iZEcv%2BFmgkKaKlJddVQY1%2FK6ryFpT%2BhGu08A2iQsglgPmCgGshexhjnCPjbTGJicqSnaE0lYQcqDcxHCrZL%2FUkjcIjJ8dGssh86JOcFfy20en38ar3Xnd0EOF6xgBBXtEr1URmWt0ugSWvaw6wUaDjoUP2K%2F0XJFdm2v8DsYrKJU%2FLqSdwXtlvC4VJCCVnLCv0aEDZLACxhlIgHv5cTk4GsbXnYnZ7vC8zR7rV9L8UDdlIsvI9%2F%2Fd7ELOtB8IrwrcHUtF2A16%2BC5slUW4bqh7db0iatNAOpeTVsBEQZ5uqU8eBMxK2gT7W1Zv%2Fuv3agSmqAo5psDPd6Af0Vqlw0RJsPHhuqp4ZI7L24DqzSqnG1zCW%2FIsmXP74apE6%2B7US0ElNlvnXi0SSX4eAYoAG8cV8HTkdgsZYA%2BvTMqEWLio7M2RQYewFv0DiXaNqm0gmTAKMVxpSBtZgTDBD4vYzzzTGx7Ep9U1nuXEaRNk%2FJz1IBT%2Fvc6D2nkJEqZoqij3a5YWB57Xhdlx59MKMwB%2BK2ctHNFMC2A2dsS5UA%3D’
loc:name = ‘.\LocQR.bmp’
FastQRCode(loc:data,loc:name)

It produces the attached and is Ok when scanned.

Best regards

Tosho Tonchev

(Attachment LocQR.bmp is missing)

Sorry. The attachment is rejected as bmp file.
I tried it reading by phone. I opened the bmp in Paint and it can read it after zoom in.
I have no scanner to test at small size.

vlada,
this code is created with a dll that we are selling.
I sent a demo showing some capabilities, but the code you need for generating a qr is:

q0 GROUP(QR)

END

CODE

Clear(q0)

q0.Text &= ‘my string to encode’

q0.LTxt = Len(q0.Text)

q0.Bbps = 1

q0.NFile = ‘myqr.bmp’

IF QrEncode(q0) THEN Message(‘error generating qr’).

RETURN

if you are interested, communicate by private mail. regards

[email protected]

Vlada if you need, you can send me a whole string so i can create easycam qr code for a test, specify also qr code class and other details. In our case in Slovenia, we had special tech details for qr code so easycam did it but not the “standard” qr code generators…