• C# Protect the Password inside a TextBox

    C# Protect the Password inside a TextBox

    First of all, the TextBox Control is not a secure way to hold passwords - so don’t use it as it is by default. Even with a PasswordChar, the real password is still visible if you use a tool like...


  • C# Send Text to Notepad

    C# Send Text to Notepad

    This tutorial focuses on sending text from a C# program to any other window by using 2 functions provided by user32.dll. The big advantage of this method is that the window you’re sending the text to doesn’t require focus. Don’t...