Avatar

Level 10

The PDF417 barcode appears to be ok. The display bars you are referring too (I think) on the left and right edges of the barcode are start and stop patterns. These patterns are part of the PDF417 specification.

There are several ways to validate the contents of the barcode. The attached form has a text field below the barcode that displays the content of the PDF417 barcode. Since a barcode object is just a specialized text field you can access and display the barcode data using the following calculation script:

event.value = this.getField("BarCode1").value;

Untitled.png

Steve