MultipleRead
Overview
Normally the OCX stops at the first positive match for a barcode. When MultipleRead is TRUE the OCX will check the entire image for barcode strings and record each positive match.
Default value = FALSE
void STSetParameter(hBarcode, ST_MULTIPLE_READ, uint16 *value) ;
void STGetParameter(hBarcode, ST_MULTIPLE_READ, uint16 *value) ;
e.g
// Read multiple barcodes on an image
#include "barcode.h"
uint16 value = 1 ;
STSetParameter(hBarcode, ST_MULTIPLE_READ, &value) ;