Foxtable(狐表)用户栏目专家坐堂 → [求助]搜索


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

主题:[求助]搜索

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


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

Select Case  e.DataCol.Name
    Case "名称","所属行业","板块"
        Dim n1 As Integer        
        Dim Lms,py,jps As  String
        Dim jps1 As New List(Of String)
        
        Lms ="名称|所属行业|板块"        
        For Each py  In Lms.split("|")
            If  py =e.DataCol.Name Then
                Exit For
            End If
            n1+=1
        Next
        If e.DataRow.Isnull(e.DataCol.Name) Then
            py  ="@|#|$".split("|")(n1)
        Else
            py = GetPY(e.DataRow(e.DataCol.Name),True)
        End If
        
        jps1.AddRange(e.DataRow("简拼").split("|"))
        jps1.Insert(n1,py)
       If n1 < e.DataRow("简拼").split("|").Length -1 Then
        jps1.RemoveAt(n1+1)
      End If
        For Each py  In jps1
            jps+=py & "|"
        Next
        e.DataRow("简拼") = jps.trim("|")       
End Select

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


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

测试没看到啊,什么情况出现的

 回到顶部