Guest_imported
New member
- Jan 1, 1970
- 0
I have a collection of JPG files I want to view one by one and then rename.
So far I've set up an FSO and created handles to the files:
Set fso = CreateObject("Scripting.FileSystemObject"
Set files = fso.GetFolder(folder).Files
But how can I arrange it so that I can view one image at a time, with Next and Back buttons and a Rename button?
I've tried a FOR...EACH loop, but that won't allow Next/Back.
I want to be able to address each image by it's index in the array. Will FSO let you do that?
Thanks, ob88
So far I've set up an FSO and created handles to the files:
Set fso = CreateObject("Scripting.FileSystemObject"
Set files = fso.GetFolder(folder).Files
But how can I arrange it so that I can view one image at a time, with Next and Back buttons and a Rename button?
I've tried a FOR...EACH loop, but that won't allow Next/Back.
I want to be able to address each image by it's index in the array. Will FSO let you do that?
Thanks, ob88