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