0
Reply

Make SendKeys.SendWait write slower.

Sergio Fonseca

Sergio Fonseca

Feb 29 2008 8:21 AM
5.5k
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