|
Sub funFTP()
If MsgBox("提交", vbExclamation + vbOKCancel, "网络客户端") = vbOK Then
Dim strRemoteFile As String
Dim strLocalFile As String
If ThisWorkbook.Saved = False Then ThisWorkbook.Save
Set cF = New cFTP
cF.SetModePassive
strLocalFile = ThisWorkbook.FullName
strRemoteFile = "1.XLS" ''''''这里不能用变量 连文字作 文件名也不行
If cF.OpenConnection("192.168.1.119", "ccc", "123") = False Then
GoTo errhandle
End If
If cF.FTPUploadFile(strLocalFile, strRemoteFile) = False Then
GoTo errhandle
End If
cF.CloseConnection
MsgBox "Ok"
Exit Sub
errhandle:
MsgBox "Sorry" 'cF.GetLastErrorMessage
cF.CloseConnection
End If
End Sub
你可以把我加的一些代码 综合看一下 不知出在哪里
你写的代码我基本没动
登陆密码
用户 密码
A A1
B B1
C C1 |
评分
-
1
查看全部评分
-
|