How do you paste text into a TextBox at the current cursor position in Windows Forms?
TextBox
Not textbox1 += string
textbox1 += string
try this code:
string insertText = "Text"; textBox1.Text = textBox1.Text+ insertText; textBox1.SelectionStart = textBox1.Text.Length +1;