I have a form that is similar to a diary. I would like the user to make notes and the form would save the notes in the textbox to a text file. The data appends to the text file, but I want it to append to the top so when it loads, it is the first line of text the user is able to see.
IO.File.AppendAllText("name.txt", vbCrLf + Date.Today + vbCrLf + TextBox9.Text)
Is there any way to have the text be inserted to the top of the text file?