You can create custom fields that create QRCodes with a code like this
return $Actions->QRCode("Text to transform to qrcode");
Since you can also retrieve the field information in the custom fields you could as well transform the field text into a qrcode like this:
$value= $Retriever->GetValueById('5');
if($value!=null)
return $Actions->QRCode($value->GetHTML()->ToText());
return '';
Transform 5 with the id of your field (that you can find in the form builder or pdf builder).
18
OCT
2021
OCT
2021
About the Author:
Im programmer working for an international company. I have programmed since i was 12 and i have done it professionally for 6 years. Programming for a company is fun and i have learned a lot of things but i have always been interested in running my own business so i decided to give it a shot doing what i do best, programming stuffs.