You can set GS and parameter length variable of the GS1DataMatrix barcode in the Detail Format event.
Visual Basic.NET code. Paste INSIDE the Detail Format event |
Copy Code
|
---|---|
Me.Barcode1.Text = "0109501101020917" + "17190508" + "10ABCD1234" + vbLf + "2110" |
C# code. Paste INSIDE the Detail Format event |
Copy Code
|
---|---|
this.Barcode1.Text = "0109501101020917" + "17190508" + "10ABCD1234" + "\n" + "2110"; |