im trying to write a simple automation system which does the following:

get a string data (easy)
click a textbox (easy)
SendKey(string data) - problems

now, the problem I am having is that when I am sending keys, say the text is:

"hi how are you"

sometimes it displays it just like that, most of the time it does this:


hii hooowwwww arrrreeeee yooouuuu


any ideas why?

code:

SendKeys.Send("hi how are you");