thanks for that i'm now using the code below, and it is finding the file, but how do i return the filenames?
<code>
Dim filesys, demofolder, filecoll, selectfile
Set filesys = CreateObject("Scripting.FileSystemObject")
url = "\\limkusr3\data$\www\applications\AppsDB\attachme nts\" & rs("s_GUID")
Set demofolder = filesys.GetFolder(url)
set filecoll = demofolder.files
</code>
|