Make SendKeys.SendWait write slower.
foreach (Char c in "name")
{
System.Threading.Thread.Sleep(100);
SendKeys.SendWait(c.ToString());
}
In this sample it will write "name" and it will take 400 miliseconds to do so. The sleep time is the delay until write the next character. You must have a thread running.