I do not have Access available. Can you reproduce the problem, in other Office applications?
- martin
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
Sub FTPdownload()
Dim mySession As New Session
Dim mySessionOptions As New SessionOptions
Dim CSVFile As String
Dim FTPPath As String
Call connect(mySessionOptions)
mySession.open mySessionOptions
CSVFile = "order-latest.csv"
FTPPath = "/store/order/output/order-latest"
Call FTPdownload(mySession, FTPPath, CSVFile)
mySession.Dispose
Call doinport(CSVFile)
End Sub