Windows Embedded 8 を搭載した「Honeywell Dolphin CT50」のスキャナーとやり取りしようとしています。
ちなみに、デバイスにインストールされているバーコードスキャナーのサンプルアプリケーションは動作しているので、バーコードやスキャナー自体の問題ではありません。
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