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:
  1. ..
  2. 'alpha:
  3. Do
  4. ...
  5.  
  6. ...
  7. 'GoTo alpha:
  8. 'Omega:
  9. '    If num < hour Then
  10. '        num = num + 1
  11. '        GoTo alpha:
  12. '    End If
  13.   num = num + 1
  14. Loop While num <= hour