How can I send my device ctrl+c through serial port in C#?

link|improve this question

44% accept rate
Why is this tagged C for? C has nothing to do with C#. – Lundin Feb 1 '11 at 12:41
2  
Can't you extrapolate the answer easily from the one you got to this question? You should be an expert in serial ports by now. – Cody Gray Feb 1 '11 at 12:47
feedback

1 Answer

up vote 6 down vote accepted

Serial ports don't transmit keys. They transmit bytes, which are normally the ASCII representations of characters.

"Keys.ControlKey & Keys.C" has to do with sensing what is going on on a PC keyboard. But serial ports do not transmit the whole state of the keyboard. For instance, the F keys and the arrows are entirely outside the ASCII system.

An ASCII chart will tell you that, for instance, Ctrl-A is 1, Ctrl-B is 2, Ctrl-C is 3, 'A' is 65, and so on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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