Tagged Questions

1
vote
4answers
1k views

POS for .NET | Differentiate between (barcode) scanner and keyboard input

I want to differentiate between (barcode) scanner and keyboard input in an WPF application. What I need is an event which occurs whenever my scanner is providing data. In my application there is a ...
0
votes
0answers
28 views

Scanning bar code without displaying input in the textbox

In my application I use barcode scanner. I want the behavior where scanning barcode will always execute some specific method. This works fine since I listen for a bar code in Windows_PreviewKeyDown ...
0
votes
1answer
27 views

Shortcut and bar code scanner

In my WPF Application I have a menu. One of the option from that menu has a shortcut assigned: CTRL+B. In my application I also need a possibility to scan a bar code using bar code scanner. My bar ...
0
votes
1answer
430 views

XBAP, Click-Once or ASP.NET for barcode intranet application

I'm working on a UI for a simple inventory system. The users will use a USB barcode scanner to retrieve an ID and then either retrieve information from the database about the scanned object or enter ...
0
votes
2answers
832 views

WPF Accept input without focus

I've created a screen in WPF that accepts input from a barcode scanner. I listen to PreviewTextInput event, and the KeyUp event, which let's me determine what the scanner "typed", and when it ...