views:

113

answers:

1
+1  Q: 

C# Serial Wedge

C#, WinForms, .Net 2.0

I'd like to create my own software serial wedge in C#. I have all the code for the serial I/O, and can get the data converted from Hex to ASCII and into a database or listbox. But am unsure how to translate the data into key presses that will go into the active application.

Can someone direct me to an article or point me in the right direction?

+1  A: 

This MSDN article has instructions about how to use SendKeys to do just what you want.

plinth