FileListBox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm an experienced VB6 programmer, but using VB.net for the first time. I'm
trying to set up a FileListBox, and having trouble getting the control to
display the files that are in the directory that is selected in the
DirListBox control. I've done the following:

Private Sub DirListBox1_SelectedIndexChanged(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles DirListBox1.SelectedIndexChanged
FileListBox1.Path = DirListBox1.Path

End Sub

Is there something else that I need to do to get the files to display in
FileListBox1?

Thanks,
Gordon
 
Back
Top