Foxtable(狐表)用户栏目专家坐堂 → [求助] 查找功能


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

主题:[求助] 查找功能

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110668 积分:563254 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/6/10 8:59:00 [显示全部帖子]

If e.Col.name = "CL" Then
    Select Case left(S,2)
        Case "AR"
            For Each files As String In FileSys.GetDirectories("Z:\GSS Shanghai\\Quality\Checkreports")
                For Each File As String In FileSys.GetFiles(files )
                    Dim name As String = FileSys.GetName(file)
                    If name Like "s_a*" AndAlso name Like "*.xlsx" Then
                        Dim Proc As New Process
                        Proc.File = file
                        Proc.Start()
                        Return
                    End If
                Next
                For Each files2 As String In FileSys.GetDirectories(files )
                    For Each File2 As String In FileSys.GetFiles(files2 )
                        Dim name2 As String = FileSys.GetName(file2)
                        If name2 Like "s_a*" AndAlso name2 Like "*.xlsx" Then
                            Dim Proc As New Process
                            Proc.File = file2
                            Proc.Start()
                            Return
                        End If
                    Next
                    
                Next
            Next
            msgbox ("没有找到相关Checklist模板!")
            
    End Select
End If

 回到顶部
帅哥,在线噢!
有点蓝
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110668 积分:563254 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/6/10 21:27:00 [显示全部帖子]

If e.Col.name = "CL" Then
    Select Case left(S,2)
        Case "AR"
            For Each files As String In FileSys.GetDirectories("Z:\GSS Shanghai\\Quality\Checkreports")
                For Each File As String In FileSys.GetFiles(files )
                    Dim name As String = FileSys.GetName(file)
                    If name Like s & "_a*" AndAlso name Like "*.xlsx" Then
                        Dim Proc As New Process
                        Proc.File = file
                        Proc.Start()
                        Return
                    End If
                Next
                For Each files2 As String In FileSys.GetDirectories(files )
                    For Each File2 As String In FileSys.GetFiles(files2 )
                        Dim name2 As String = FileSys.GetName(file2)
                        If name2 Like s & "_a*" AndAlso name2 Like "*.xlsx" Then
                            Dim Proc As New Process
                            Proc.File = file2
                            Proc.Start()
                            Return
                        End If
                    Next
                    
                Next
            Next
            msgbox ("没有找到相关Checklist模板!")
            
    End Select
End If

 回到顶部