Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Image viewing/renaming

Status
Not open for further replies.

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top