Disable Symbol scanner 'beep' on successful scan?
barcode-scanner, c#, compact-framework, motorola
Solution
Try this:
Symbol.Barcode.Reader reader = new Symbol.Barcode.Reader();
// Other initialization
reader.Parameters.Feedback.Success.BeepTime = 0;
Problem
I'm working with a motorolla MC55 which scans and beeps on a successful scan, I need to disable that feature so that it doesn't play any sounds at all on a scan. Any ideas how I can accomplish this?