Im integrating a Scanpal Batch barcode scanner into my application, and need a little help with my label printing facility.
at the moment the scanner imports a list of barcodes and quantitys this is merged with my product table and results in a table something like this:
barcode | Description | price | quantity
123456 | my stuff | 9.99 | 7
i need a query to move this to my label printing however my print queue works like this
barcode | Description | price
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
can a query do this?
Thanks
at the moment the scanner imports a list of barcodes and quantitys this is merged with my product table and results in a table something like this:
barcode | Description | price | quantity
123456 | my stuff | 9.99 | 7
i need a query to move this to my label printing however my print queue works like this
barcode | Description | price
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
123456 | my stuff | 9.99
can a query do this?
Thanks