How to encode data from few text fields to QR Barcode field. ?
I am embedding data from few text fileds to barcode field. I am using Adobe Acrobat pro.
I want to encode the data embedded in the barcode field.
Awaiting a respone on this asap.
My code is s below:
var F32 = "F32~" + this.getField("txtChargeCode").value;
var F33 = "F33~" + this.getField("txtName").value;
var dSep="|';
var Result = F32 + dSep + F33 ;
this.getField("Barcode").value = Result.toUpperCase() + '\r\n';
