I am trying to write my text1 box to a txt file, except I want the last line entered to be the first line in the txt file. The newest will always be on top. so if I entered 1 the txt file would say,
1
if I then enter 2 the txt file should say,
2
1

Open App.Path & "\list1.txt" For Append As #1
Print #1, Text1.Text
Close #1
how could I alter this code to fit my needs?