H
HardySpicer
I have a listbox and I need to store the entire contents to a text
file.(ie I don't need to select them with a mouse - just store the
lot!)
Dim oWrite As System.IO.StreamWriter
oWrite = IO.File.CreateText("C:\store_search.txt")
oWrite.WriteLine(Listfullpath1.SelectedItems.ToString)
oWrite.Close()
Doesn't work of course. I think I need to select the items one by one
by incrementing a counter.
any ideas?
H.
file.(ie I don't need to select them with a mouse - just store the
lot!)
Dim oWrite As System.IO.StreamWriter
oWrite = IO.File.CreateText("C:\store_search.txt")
oWrite.WriteLine(Listfullpath1.SelectedItems.ToString)
oWrite.Close()
Doesn't work of course. I think I need to select the items one by one
by incrementing a counter.
any ideas?
H.