Useful Apps, Sites & More…

Watch “Top 4 Programming Languages to Learn In 2019” on YouTube Watch “14 Things That Destroy Your Computer Slowly But Surely” on YouTube Watch “10 Useful Windows Apps & Software You Should Try in 2019” on YouTube Continue reading Useful Apps, Sites & More…

SendKeys.Send(String) Method

By docs.microsoft.com Definition Namespace: System.Windows.Forms Assembly:System.Windows.Forms.dll Sends keystrokes to the active application. C# Parameters keys String The string of keystrokes to send. Exceptions InvalidOperationException There is not an active application to send keystrokes to.ArgumentException keys does not represent valid keystrokes Examples The following code example demonstrates how to use the Send method.To run the example, paste the following code in a form called Form1 containing a button called Button1. Ensure the click events are associated with their event-handling methods in this example. The button control’s TabIndex property should be set to 0. When the example is running, double-click the form … Continue reading SendKeys.Send(String) Method