我想为 Motorolo MC 9190 G 手机开发简单的应用程序,它具有内置的条形码扫描仪,我想扫描条形码并将它们显示在消息框中。我没有手机,所以我必须在模拟器中测试它。当我在模拟器中部署代码时,它会给出空异常错误。我的代码是我添加 sample.barcode dll
Private barcodeReader As Symbol.Barcode.Reader // error occurs here itself
barcodeReader = New Symbol.Barcode.Reader()
barcodeReader.Actions.Enable()
Dim nextReaderData As Symbol.Barcode.ReaderData = barcodeReader.GetNextReaderData()
MessageBox.Show(nextReaderData.Text)
我是初学者。请帮忙。。