This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Not possible to detach files ~Umberto Nongeroson 14.Jul.03 04:01 PM a Web browser Notes Client All ReleasesWindows 2000, Windows XP
I don't know whether there was a change in this function, but if you just want to solve the problem in a way that's compatible with both versions, you can always use the Kill statement to get rid of the old file if it exists. A cheap way to do this is as follows:
On Error 4005 Goto AlreadyExists Call o.ExtractFile ( .. ) ExtractDone: ... Exit Sub AlreadyExists: Kill ... ' delete the old file Call o.ExtractFile ( .. ) Resume ExtractDone