以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  表述格式  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=65850)

--  作者:HJG_HB950207
--  发布时间:2015/3/24 14:22:00
--  表述格式
调用d:\\图片   对:e.Datarow("照片") = e.NewValue & ".jpg"  怎改
--  作者:狐狸爸爸
--  发布时间:2015/3/24 14:30:00
--  
请重新描述您的问题,我没看懂
--  作者:HJG_HB950207
--  发布时间:2015/3/24 14:36:00
--  
不好意思,照片JPG在d目录下,在表属性中,加如下代码,列MA 在d:目录中选取与姓名相同的JPG格式文件,e.NewValue (" d:\\") & ".jpg"如何修改。

If e.DataCol.name = "姓名" Then
   If e.newValue Is Nothing Then
        e.DataRow("MA") = Nothing
   Else
        e.DataRow("MA") = e.NewValue (" d:\\") & ".jpg"
   End If
End If



--  作者:狐狸爸爸
--  发布时间:2015/3/24 14:38:00
--  
If e.DataCol.name = "姓名" Then
   If e.newValue Is Nothing Then
        e.DataRow("MA") = Nothing
   Else
        e.DataRow("MA") = "d:\\" &  e.NewValue & ".jpg"
   End If
End If
 
提醒:没有人会将文件放在根目录的,最好有个专门的目录。

--  作者:HJG_HB950207
--  发布时间:2015/3/24 14:39:00
--  
谢谢,我会到img中建,谢谢!