Page 1 of 1

Barcode Reader

Posted: Mon Aug 06, 2012 8:12 am
by sulfaroj
I am trying to specify the barcode types to read in v9.0 and have had no luck. How do I specify I only want to read Code3of9 and 128 for instance in C#.

Re: Barcode Reader

Posted: Mon Aug 06, 2012 10:56 am
by Loïc
Hello,


VB:

Code: Select all

Dim BarcodeType As Barcode1DReaderType = Barcode1DReaderType.Barcode1DReaderCode39  Or Barcode1DReaderType.Barcode1DReaderCode128 
C#:

Code: Select all

Barcode1DReaderType  BarcodeType = Barcode1DReaderType.Barcode1DReaderCode39  | Barcode1DReaderType.Barcode1DReaderCode128;
Hope this helps!