需要另外使用代码处理:
http://www.foxtable.com/webhelp/topics/1410.htm、
http://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