i have used a vbscript that i wrote, where it would give you a popup box that you can use to input your comma delimited filenames and it would take that and do it's other things. something like this:
Code:
strFiles = InputBox("Input file names seperated by commas.", "Names")
arrFiles = split(strFiles,",")
strSource = "dbfront.mdb"
set oFSO = CreateObject("Scripting.FileSystemObject")
for i = 0 to UBound(arrFiles)
strDestination = "dbfront_" & arrFiles(i) & ".mdb"
oFSO.CopyFile "c:\" & strSource, "c:\" & strDestination
loop
Set oFSO = Nothing
then save the file as a filename.vbs file and run it using either CScript from a command prompt or Wscript from with in windows.
Bookmarks