0
votes
1answer
57 views

want to stop user input by messagebox but bypassed by a Enter keydown

I'm coding a windows form application running on a barcode scanner. The plantform is .Net2.0CF/C#. What i want is whenever user input wrong, the app will pop a messagebox and block the next ...
0
votes
2answers
1k views

C# WinForm + Barcode Scanner input, TextChanged Error

UPDATE: SOLUTION AT END I have a Winform, label1 will display some info returned from a SQL Search using the input (MemberID) received from barcode scanner via txtBoxCatchScanner. Scenario is ...
1
vote
1answer
289 views

Catch Data from a barcode scanner connected via Ethernet

I have a vb.net application that needs to catch the readings from a barcode scanner in a TextBox. As far as I know, the scanners work sending the data as keystrokes, but I dont know if that still ...
0
votes
1answer
129 views

Capturing Line Feed character in a Windows Forms TextBox

I have a Windows Forms application containing a TextBox. After I focus on the TextBox, I use a USB barcode scanner to read out a barcode string which always starts with a Line Feed (LF) character. The ...
1
vote
0answers
74 views

Capture unprintable characters in Silverlight or WinForms field

I have a Silverlight application. In one field the user is supposed to enter data by scanning a barcode using a usb connected barcode-scanner. Normally this is not a problem because the barcode ...
0
votes
1answer
104 views

Windows Forms app on mobile scanner, can't scan to textbox

Having some issues with setting up simple textbox on the windows form on my scanner. I have to add new textbox to existing already created app, and my new textbox doesn't seem to work. When i set ...
0
votes
0answers
171 views

Barcode scanning closes MessageBox

I'm creating a desktop application with barcode scanner module to read the barcode and when the article has been found in my db, it prints out the detail. After printing, it shows a dialog message to ...
1
vote
3answers
5k views

How to Check if User input is from Barcode Scanner or Keyboard?

I am now creating p.o.s application for company cafeteria which the cashier scan employee id and show its information for their transaction. My Problem is the cashier can also use their keyboard ...
0
votes
3answers
2k views

Handling USB Barcode Scanner acting as a keyboard, with header/trailers from anywhere on the form

In a winforms app, I need to read input from a standard USB barcode scanner, one which makes iteself appears as a USB keyboard to windows. This has to work without giving focus to a particular ...