01-21-2011, 06:39 AM
Alright this will load it from the .ini
Hope this is what you needed!
Code:
Dim reader as new system.io.streamreader(my.application.info.directorypath + "/settings.ini")
dim split() as string = reader.readtoend.split(vbnewline)
for each entry in split
listbox1.items.add(entry)
next
reader.close
reader.dispose