0

This is a very general question and i am Hoping people can point me to the right documentation.

Basically I would like to use a Physical Bar code scanner to help with entries for my Wx python Data entry App I am creating for my Company. I am hoping for a Bar Code scanner with a carriage return enabled so I can use it to scan the bar codes on the work order to save time. I Do not know how to integrate it to python . Any info/examples would be amazing.

MyApp

1 Answers1

0

There will be nothing particularly difficult.
Customization, such as adding a carriage return code at the end of the barcode notification, is done by having the scanner read the configuration barcode.

You want to keep the input focus on the correct field (text box?).

Notifications from the scanner are made as if a human had entered data from the keyboard.

kunif
  • 4,060
  • 2
  • 10
  • 30
  • So if what i understand is right. All I need to do i just install a bar code scanner and just select my text box-> scan and the string should pop up in my text field? I dont need any special I/O reader module? – Dylan Devotta Mar 11 '20 at 15:12
  • It will be correct with your understanding. If the scanner hardware is set to keyboard input emulation mode, no additional modules are required. – kunif Mar 11 '20 at 15:28
  • Follow up Question, What if i need the scanner to tab trough to the next text box after scanning. Is this also a default option? – Dylan Devotta Mar 11 '20 at 16:04
  • Here's another article I answered earlier. [How do I distinguish between a scanner input and keyboard input in Javascript?](https://stackoverflow.com/a/53623783/9014308) Instead of a carriage return, you could specify TAB as the code to signal the end of the barcode notification. It is also specified in the settings barcode. – kunif Mar 11 '20 at 16:19