Re: Someone review my logic
Sure, you can use For Each to go through the array. And if the image is already a file on the disk you can use System.IO.File.Copy(origfilename, duplicatename)
Re: Someone review my logic
Great, so basically for each in array,
System.IO.File.Copy(origfilename, x)
x =+1
Or can I just have "Next" at the end of the loop?
Re: Someone review my logic
Quote:
Originally Posted by Merlin2000
Great, so basically for each in array,
System.IO.File.Copy(origfilename, x)
x =+1
Or can I just have "Next" at the end of the loop?
yes, for loops shift the variable for you