hey, I have this prob, I'm making an app that renames file and the files are name abc-001s.jpg, abc-002s.jpg, etc. So this is what i have:
Dim a as string
a = "001"
do:
filecopy "A:\abc-" & a & "s.jpg", "A:\" & text1.text & ".jpg"
a = a + 1
it makes a turn to 2 when it adds it. so what can i do??!?!?!
