How do you paste text into a TextBox at the current cursor position in Windows Forms?
TextBox
Not textbox1 += string
textbox1 += string
A much easier way would be to use the Paste method:
Paste
textbox1.Paste("text to insert");
I've done this using .NET 4.0