ok so how do you save a listboxes list as a text file because the following code I usually use does not work:

open "C:\List.txt" for output as #1
Print #1, Listbox1.list
close #1

I get an invalid argument.

and if i try it like this

open "C:\List.txt" for output as #1
Print #1, Listbox1.text
close #1

it just save a blank text file.

also how do you then import a text file into a list box?

thanx


------------------
Mooose