以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 使用Uploader提交,如何获得AddImage的信息? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=194018) |
-- 作者:xluoping -- 发布时间:2024/11/2 16:57:00 -- 使用Uploader提交,如何获得AddImage的信息? With wb.AddInputGroup("form1","ipg133","水样照片上传(1张)") With .AddUploader("up128","",True) .AddImage("./照片/aaa.jpg") .AllowDelete = True \'允许删除 .Incremental = True \'允许重复选择文件或连续拍照 .ScaleWidth = 300 End With End With 接收窗体 For Each key As String In e.Files.Keys For Each fln As String In e.Files(key) e.SaveFile(key,fln,"D:\\EHSFTP\\照片\\" & gddr("_Id") & "_" & cpi & ".jpg") \'保存接收到的文件 cyzps = cyzps & "|" & "/二次供水采样照片/" & gddr("_Id") & "_" & cpi & ".jpg" cpi = cpi + 1 Next Next 不能获取 aaa.jpg 的图片,怎么才能获得 aaa.jpg |
-- 作者:有点蓝 -- 发布时间:2024/11/2 17:35:00 -- 用户新增加的图片才能获取。 使用AddImage显示的图片不是已经存在了吗,可以使用标记数据(http://www.foxtable.com/mobilehelp/topics/0127.htm)存储这个路径,然后直接后台取文件
|