Foxtable(狐表)用户栏目专家坐堂 → [求助]图片浏览器管理ftp远程文件问题


  共有1845人关注过本帖树形打印复制链接

主题:[求助]图片浏览器管理ftp远程文件问题

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:107440 积分:546479 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2023/5/29 10:27:00 [显示全部帖子]

需要另外使用代码处理:http://www.foxtable.com/webhelp/topics/1410.htmhttp://www.foxtable.com/webhelp/topics/2700.htm

Dim pv As WinForm.PictureViewer = e.Form.Controls("PictureViewer1")
Dim
 fl As String = pv.SelectedItem
If
 fl > "" Then
    pv.DeleteFile(fl)
Dim ftp1 As New FtpClient
ftp1
.Host="196.128.143.28"
ftp1
.Account = "foxuser"
ftp1
.Password = "138238110"
If 
ftp1.DeleteFile(fl") = True Then
    
Messagebox.show("删除完成!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
Else
    
Messagebox.show("删除失败!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If

End
 If

 回到顶部