Dim qr As QRGenerator
qr.Initialize(ImageView1.Width)
ImageView1.Bitmap = qr.Create("QR with B4X!!!")
Dim sb As StringBuilder
sb.Initialize
For i = 1 To 20
sb.Append("QR with B4X!!!")
Next
qr.Initialize(ImageView2.Width)
ImageView2.Bitmap = qr.Create(sb.ToString)
Thank you DonManfred!
Ok, i will use that on-device solution, instead the online one.
I currently use B4A 6.50, so when i opened the example it say i need a newer version, and dont recognizeb4xbitmap, b4xcanvas, etc. Wich B4A version do i need? The Newer versions of B4A will run the 6.50 apps that i made without problems? (they are all simple apps)
Thanks again.