FileListBox ListCount is missing

  • Thread starter Thread starter Lennart Nielsen
  • Start date Start date
L

Lennart Nielsen

I'm trying to use the FileListBox, but it does not seem to have the
ListCount property or any substitute. Any bids on this or another way (short
of the old DOS routine) to get a countable listing or array of files from a
folder?

Lennart
 
Lennart Nielsen said:
I'm trying to use the FileListBox, but it does not seem to have the
ListCount property or any substitute. Any bids on this or another way
(short of the old DOS routine) to get a countable listing or array of
files from a folder?

\\\
Imports System.IO
..
..
..
.... = Directory.GetFiles("C:\bla").Length
///
 
Back
Top