'Sub in FTP Class Module
Sub FTP_UpLoadSet(LocalPath As String, UpLoadList As List, ServerPath As String)
Files_List2.Initialize
Files_List2 = UpLoadList
Msgbox(UpLoadList.Size, Files_List2.Size) 'This line shows they are the same
SingleUp = False
If Files_List2.Size > 0 Then
UpLoadComplete = False
aSet = 0
LP = LocalPath
GF = Files_List2.Get(aSet)
FP = ServerPath & iif(Right(ServerPath, 1) = "/", "", "/")
FTP.UploadFile(LP, GF, False, FP & GF)
Else
SingleUp = True
Msgbox("No Files Found...", "")
End If
End Sub