以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  同一行的多图片列禁止同名问题  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=194769)

--  作者:HJG_HB950207
--  发布时间:2025/1/12 23:18:00
--  同一行的多图片列禁止同名问题
如何代码控值同一行的多图片列,禁止同名啊。谢谢老师!
--  作者:有点蓝
--  发布时间:2025/1/13 9:25:00
--  
到表事件处理:http://www.foxtable.com/webhelp/topics/2209.htm

BeforeAttachFile事件

Select Case e.DataCol.Name
    Case "图片" \'如果在图片列插入文件
    Dim fls As List(of String)
    fls = e.DataRow.Lines(
"
部门")
    if 
fls.contains("/" & e.FileName ) then
msgbox("有同名文件")
 e.Cancel = True
end if
End Select