I am very new to .net...
With lstSelectedItems
.Items.Clear()
.BeginUpdate()
Dim fi As FileInfo
For Each fi In lstMultiSelect.SelectedItems
.Items.Add(fi.Name)
Next
.EndUpdate()
End With

On the FILEINFO .. this is a class... How and where does this get created. I am trying to cut some code from the CD Examples into my project and can not track this down.. Somebody .. please help