K
Kent
Hello all,
Thank you in advance. I am trying to write an application in VB.Net
that will show the data that is in a barcode in a textbox. I can deploy
the application to the scanner (Intermec CK31) but when I scan the
barcode nothing happens. I just get a beep. I have tried running the
sample application that came with in the Intermec Resource Kit and I
get the same thing (nothing). You will find the code below. Any help
would be GREATLY appreciated.
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents bcr As Intermec.DataCollection.BarcodeReader
Private Sub BarcodeRead(ByVal sender As System.Object, ByVal e As
Intermec.DataCollection.BarcodeReadEventArgs)
TextBox1.Text = e.strDataBuffer
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
bcr.Dispose()
Me.Close()
End Sub
Again I am just trying to get my application to recognize a barcode. I
can use the ScanDemo that came on the scanner and read the barcode. I
have a 2D barcode and an UPC.
Thanks Again
Thank you in advance. I am trying to write an application in VB.Net
that will show the data that is in a barcode in a textbox. I can deploy
the application to the scanner (Intermec CK31) but when I scan the
barcode nothing happens. I just get a beep. I have tried running the
sample application that came with in the Intermec Resource Kit and I
get the same thing (nothing). You will find the code below. Any help
would be GREATLY appreciated.
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents bcr As Intermec.DataCollection.BarcodeReader
Private Sub BarcodeRead(ByVal sender As System.Object, ByVal e As
Intermec.DataCollection.BarcodeReadEventArgs)
TextBox1.Text = e.strDataBuffer
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
bcr.Dispose()
Me.Close()
End Sub
Again I am just trying to get my application to recognize a barcode. I
can use the ScanDemo that came on the scanner and read the barcode. I
have a 2D barcode and an UPC.
Thanks Again