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
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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
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
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
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
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.