If I use the following code:
for (int i = 0; i < text.Length; i++) { char c = text[i]; Keys k = (Keys)(byte)c; MessageBox.Show(c.T
That seems like the wrong approach. Have you considered using SendKeys?