I have the following working code, but I want it to auto-update after another entry has been written to "mytextfile.txt"
I am stumped on this one. Anyone?
Code:
Private Sub Info_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Populate ListBox.
Dim my_list() As String = File.ReadAllLines("mytextfile.txt")
lstTextEntry.Items.AddRange(my_list)
End Sub