Foxtable(狐表)用户栏目专家坐堂 → [求助]取值获取定位问题


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

主题:[求助]取值获取定位问题

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


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2016/4/1 14:49:00 [显示全部帖子]

 那你的图片控件不要绑定列,直接赋值吧。

 

Dim r As Row = Tables("表A").Current
If r IsNot Nothing
    Dim idx As Integer = iif(r.Index>0, r.Index-1, 0)
    r = Tables("表A").Rows(idx)
    Dim p As String = ProjectPath & "Attachments/" & r("第一列")
    If FileSys.FileExists(p)
        e.Form.Controls("PictureBox1").Image = getimage(p)
    Else
        e.Form.Controls("PictureBox1").Image = Nothing
    End If
End If


 回到顶部