rocket2000
Technical User
Hi,
Not really sure where to ask this question,
I am trying to encode the following (00) 1 0123456 361586002 into a UCC /EAN 128 barcode label in my Report
The record source is from table called Delivery and uses the following three fields ( A1Code, GSI and PalletNo )
I have tried following examples below in the control source of the ActiveX Barcode and inputting the FNC1 character using the ASCII 202 character "Ê" at various position but still to no avail.
="00" & [A1Code] & [GSI] & "Ê" & [PalletNo]
="00" & [A1Code] & "Ê" & [GSI] & [PalletNo]
I have even tried removing the FNC1 character and inputting the following below in the control source but the barcode scanner is showing an error “invalid check digit”.
="00" & [A1Code] & [GSI] & [PalletNo]
Any assistance would be greatly appreciated,
Not really sure where to ask this question,
I am trying to encode the following (00) 1 0123456 361586002 into a UCC /EAN 128 barcode label in my Report
The record source is from table called Delivery and uses the following three fields ( A1Code, GSI and PalletNo )
I have tried following examples below in the control source of the ActiveX Barcode and inputting the FNC1 character using the ASCII 202 character "Ê" at various position but still to no avail.
="00" & [A1Code] & [GSI] & "Ê" & [PalletNo]
="00" & [A1Code] & "Ê" & [GSI] & [PalletNo]
I have even tried removing the FNC1 character and inputting the following below in the control source but the barcode scanner is showing an error “invalid check digit”.
="00" & [A1Code] & [GSI] & [PalletNo]
Any assistance would be greatly appreciated,