Currently Being Moderated
Mar 3, 2009 8:51 PM
Hello,
We are using custom script to assign text value to datamatrix barcode for encoding. The following works well ("this" refers to barcode object)
this.rawValue ="Hello WOrld";
I can decode the datamatrix code generated with the above code in the reader with a scanner.
The following has problem (it is generating datamatrix code in the reader but i cannot decode using a scanner):
this.rawValue = DOB.rawValue;
In order to debug the above I used the following:
this.rawValue=DOB.rawValue;
debugtext.rawValue = this.rawValue;
where debugtext is a text field to display what value the barcode object is holding - the text field is displaying the value correctly.
This looks very weird. Thanks in advance if you have experienced anything like above and share your observation.