Hi guys I was wondering I use the following code to load to a texbox from a textfile

VB Code:
  1. Open App.Path & "\status.txt" For Append As #1
  2.         Write #1, "Manual"
  3.         Close #1

but how do I load to a listbox?

Thanks!!