Orcho,<br>
<br>
I apologize for being late - I thought I had responded to this, but I think a power problem killed my response, and I did not come back to check - mea culpa.<br>
<br>
The only thing I see that might be a problem in the code above is that the 'Kill" line will fail if b$ is the root of a drive, e.g. "C:\". You might want to preface the statement with<br>
<br>
If Right$(b$,1)<>"\" then<br>
b$ = b$ & "\"<br>
End If<br>
then issue the Kill statement<br>
<br>
However, there is one other item, which you have probably found by now if it is a problem. Should <br>
File1.Path=b$<br>
be changed to <br>
b$=File1.Path<br>
?<br>
<br>
Otherwise, b$ is not set, unless in code previous to this.<br>
<br>