populate listbox

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

How can i populate a list box from a text file?

I create a list of files within a text file and I want to populate the list
box with that list to allow the users to select the web server to test
against.

how can i do that?
 
use the IO class and a text reader, at each pass where there's a delimmiter
for instance, use Listbox.Items.Add
 
Back
Top