I'm trying to interact with the scanner of the "Honeywell Dolphin CT50" with windows embedded 8. This is the code snipped I used, to activate the integrated barcodescanner but it isn't working as expected, the DataReceived method never gets called.
By the way, the Barcodescanner example application, which is installed on the Device is working, so it can't be a problem with the barcodes or the scanner itself.
Dim c As DeviceInformationCollection = Await DeviceInformation.FindAllAsync(BarcodeScanner.GetDeviceSelector())
Dim scanner As BarcodeScanner = Await BarcodeScanner.FromIdAsync(c(0).Id)
Me._scanner = Await scanner.ClaimScannerAsync()
AddHandler Me._scanner.DataReceived, AddressOf DataReceived