QR-codes

Can you add the generation of QR-codes to the list of barcodes?
If possible with a way to set the dimensions (in px) and save the generated QR-code

Thx
Vorobushek

Re: QR-codes

I’m in , and would like to see that to!
Art

Re: QR-codes

Sure !!! you can display QR’codes in forms and grids

in forms you shoukd add this Onchange event on TextToQrcode field and put a new string in a Url field

$sql = “https://chart.googleapis.com/chart?cht=qr&chl=”;
$sql = $sql . {nombre} . “&choe=UTF-8&chs=100x100#”;
{imagen} = $sql;
{imagen2} = “<img src= ‘{imagen}’ />”;


imagen is the TextToQrcode
and imagen2 is the QrCode image

You can see attached file imagen1.jpg


GRID
the same,

Aquiles

imagen1.jpg

Re: QR-codes

looks good! It wold be great if this could be included as SC example App !

Art