Share Dot Net Experience
Select All string in TextBox using C#.Net
Copy and Paste this Code in your TextBox Keydown Event
if ((e.Control == true) && (e.KeyCode == Keys.A))
{
textBox1.SelectAll();
}
‹
›
Home
View web version