Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have here a Windows Mobile-based PDA (Mobile Compia M3 Sky) equipped with a barcode scanner. This barcode scanner works by reading the data from the scanner into the Clipboard and then simulating a Paste on whatever application is currently running.

The problem is, when you're using Terminal Services from the device and you scan a barcode containing punctuation (e.g. "A-2-C", "A-1-[") the punctuation gets stripped out before it reaches the server - i.e. the only things that make it to the server are the alphanumerics (i.e. "A2C" and "A1" respectively).

I have verified that the device does have the full barcode including punctuation in the clipboard - i.e. if I open up Notes on the device and scan these barcodes, they are pasted correctly (i.e. "A-2-C" and "A-1-[" respectively) and I can paste them again by tapping, holding and selecting Paste, or by pressing Ctrl+V on the soft keyboard.

However, for some reason, this punctuation appears to get stripped out by the RDP client on the device (mstsc40.exe) - it happens regardless of what application or OS the server is running [on].

Does anyone have any previous experience with this, or have any pointers?

Cheers!

share|improve this question

2 Answers

I can only suggest a workaround of using Virtual Channels to send over the data. Although not really an answer to your question it would be a better solution since copy/paste over an RDP connection is known to be buggy (see these links: RDP Clipboard Fix, Why does my shared clipboard not work? (Part 1) & Why does my shared clipboard not work? (Part 2))

share|improve this answer
up vote 0 down vote accepted

In the end it was just a bad implementation of the RDP client on Windows Mobile 5. WM6 is fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.