How do I send a period using sendkeys? I have tried:
System.Windows.Forms.SendKeys.SendWait(\"{.}\"); System.Windows.Forms.SendKeys.SendWait(\".\");
Have you considered the Keys enum? It has a "decimal"
System.Windows.Forms.SendKeys.SendWait(Keys.Decimal)