I am trying to insert text into the word document. But whenever i execute my code the text enter by me in the text box is always added in the beginning. I am unable to inser
You have to use append method to add the text within the same line rather than entering in next line Ex:
File.AppendAllText(@"c:\path\file.txt", textBox1.Text);
This might help