Hello,
I have an odd issue.
In VBA, I first delete a file (e.g. FileName.pdf) and then rename another file (e.g. FileName2.pdf) to the name of the deleted file (e.g. FileName.pdf):
The code snippet is:
varTemp = funDeleteFile(strPath & "" & strFile)
If varTemp <> gcstrfunDeleteFile_Success...