J
JDB
Does anyone point me to a class module to load filenames into a list
box so they can be selected for use within the VBA??
thanks
JDB
box so they can be selected for use within the VBA??
thanks
JDB
JDB said:Does anyone point me to a class module to load filenames into a list
box so they can be selected for use within the VBA??
thanks
JDB
This
http://www.smccall.demon.co.uk/Downloads.htm#FsRecurse
will scan a specific path, either recursively (including subfolders) or not.
The demo fills a textbox, but all it needs to change to filling a listboxis
to change the event procedure fs_FileFound to something like:
Me.ListBoxName.AddItem FileName
abkad said:Thank you this question is helpful for me but how can I change the event
procedure fs_FileFound or where can I add this statement
Me.ListBoxName.AddItem FileName
ab