0
Answer

Make SendKeys.SendWait write slower.

Sergio Fonseca

Sergio Fonseca

16y
5.5k
1
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.

Next Recommended Forum