Foxtable(狐表)用户栏目专家坐堂 → 通过代码如何往[图片]字段添加多个图片文件?


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

主题:通过代码如何往[图片]字段添加多个图片文件?

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/4/15 12:16:00 [显示全部帖子]

If MessageBox.Show("确定选择录入多个电子档案?","请核准信息",MessageBoxButtons.YesNo,MessageBoxIcon.Question) = DialogResult.Yes Then
    Dim dlg As New OpenFileDialog
    dlg.MultiSelect = True
    dlg.filter = "|*.bmp;*.jpg;*.gif"
    If dlg.ShowDialog = DialogResult.OK Then
        Dim fls As String = CurrentTable.Current("电子档案")
        For Each fl As String In dlg.FileNames
            FileSys.CopyFile(fl, ProjectPath & "电子档案/" & FileSys.GetName(fl), True)
            If fls >"" Then
                fls = fls & vbcrlf
            End If
            fls = fls & FileSys.GetName(fl)
        Next
        CurrentTable.Current("电子档案") = fls
    End If
End If

 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/4/16 14:52:00 [显示全部帖子]

If MessageBox.Show("确定选择录入多个电子档案?","请核准信息",MessageBoxButtons.YesNo,MessageBoxIcon.Question) = DialogResult.Yes Then
    Dim dlg As New OpenFileDialog
    dlg.MultiSelect = True
    dlg.filter = "|*.bmp;*.jpg;*.gif"
    If dlg.ShowDialog = DialogResult.OK Then
        Dim fls As String = CurrentTable.Current("电子档案")
        For Each fl As String In dlg.FileNames
            If fl <> ProjectPath & "电子档案/" & FileSys.GetName(fl) Then
                FileSys.CopyFile(fl, ProjectPath & "电子档案/" & FileSys.GetName(fl), True)
            End If
            If fls >"" Then
                fls = fls & vbcrlf
            End If
            fls = fls & FileSys.GetName(fl)
        Next
        CurrentTable.Current("电子档案") = fls
    End If
End If

 回到顶部