Hello,
I will need your help.
I have a database is Access 2016 and I have put the add-on Chilkat FTP 3.0.0. I am checking if there is the particular name file in a specific ftp folder with the following code:
For long time the code it was working well and suddenly gives me the following run time error: “-2147467259 (80004005)”
I can’t understand why this is happens.
I upload an example of the code.
Any ideas please?
Thank you in advance.
Regards,
Dimitris
I will need your help.
I have a database is Access 2016 and I have put the add-on Chilkat FTP 3.0.0. I am checking if there is the particular name file in a specific ftp folder with the following code:
Code:
Imgs = ftp.GetCurrentDirListing(strImgName & "*.jpg")
Imgs = Replace(Imgs, vbCrLf, "")
Imgs = Replace(Imgs, vbTab, "")
Imgs = Replace(Imgs, "<file>", ";")
Imgs = Replace(Imgs, "</file>", ";")
CollImgs = Split(Imgs, ";")
For long time the code it was working well and suddenly gives me the following run time error: “-2147467259 (80004005)”
I can’t understand why this is happens.
I upload an example of the code.
Any ideas please?
Thank you in advance.
Regards,
Dimitris