Files List

  • Thread starter Thread starter davec
  • Start date Start date
D

davec

I need the ability to search a directory and list al or some files. Then I
need to list them on a form to be used for bit comparison. I could not figure
out how to access a directory and list the files in question. I am using MS
ACCESS 2000 / 03. Please respond.
 
To get the list of files, use the Dir() function. You will find detail info
in VBA Help.

To get them on the form, the easiest way would be to create a table to use a
record source for a sub form and write the file names retrieved with the
Dir() function to it.
 
Back
Top