Foxtable(狐表)用户栏目专家坐堂 → 关于图片的问题


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

主题:关于图片的问题

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


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

Dim dlg As New FolderBrowserDialog
If dlg.ShowDialog = DialogResult.Ok Then
    MessageBox.Show("你选择的目录是:" & dlg.SelectedPath,"提示")
    For Each dr As DataRow In DataTables("客户档案").Select("姓名 is not null")
        Dim str1 As String = dr("姓名")
        Dim str2 As String = ""
        If dr.isnull("身份证") = False Then
            str2 = str2 & right(dr("身份证"),6)
        End If       
        Dim str3 = "-身份证正面"       
        Dim str4 = "-身份证反面"
        For Each file As String In FileSys.GetFiles(dlg.SelectedPath)
            Dim name As String = FileSys.GetName(file)
            If name.Contains(str1) AndAlso name.Contains(str2) AndAlso (name.contains(str3) OrElse name.contains(str4)) Then
                Dim ls = dr.Lines("身份证照片")
               
                If ls.contains(name) = False Then
                    ls.add(name)
                    dr.lines("身份证照片") = ls
                End If
               
            End If
        Next
    Next
End If


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


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

datacolchanged事件

 


If e.DataCol.name = "姓名" OrElse e.DataCol.name = "身份证" Then
    Dim dr As DataRow = e.DataRow
    Dim str As String = dr("姓名")
    If dr.isnull("身份证") = False Then
        str = str & right(dr("身份证"),6)
    End If
    Dim ls As new List(Of String)
    For Each file As String In FileSys.GetFiles(ProjectPath & "照片\客户身份证/")
        Dim name As String = FileSys.GetName(file)
        If name.Contains(str) Then
            If ls.contains(name) = False Then
                ls.add(name)
            End If
        End If
    Next
    dr.lines("身份证照片") = ls
End If


 回到顶部