What are the values of changer and newnam?
It seems to me that changer will only contain the file name, and not the path (which is also needed).
By the way, why are you using GoTo's the way you are? A "Do Loop" would be more appropriate, eg:
VB Code:
.. 'alpha: Do ... ... 'GoTo alpha: 'Omega: ' If num < hour Then ' num = num + 1 ' GoTo alpha: ' End If num = num + 1 Loop While num <= hour




Reply With Quote