
Very good day, I have an application that reads QR codes, I am trying to get it to send all the readings to the collection, it only sends one
The process works only by taking a code
event OnScan
I need to be able to take more shots and send them all to the collection, can you guide me
Hi @andresnex,
The current code will work when the Barcode Reader is not set to 'Scan multiple'. In case of Scan multiple, the code below should do the trick:
//Should you want to Clear and Collect after each OnScan (of multiple codes)
//Use ClearCollect instead of Collect
Collect(
ScanColeccion;
//Return an array of all barcode values
ForAll(
Self.Barcodes;
{
prueba: Value
}
)
);;
If this solves your question, would you be so kind as to accept it as a solution. ✔️
If you liked my solution, please give it a thumbs up. 👍