Foxtable(狐表)用户栏目专家坐堂 → tabcontrals点击页面标签加载表


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

主题:tabcontrals点击页面标签加载表

美女呀,离线,留言给我吧!
lfz123
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:二尾狐 帖子:530 积分:4613 威望:0 精华:0 注册:2018/3/24 18:04:00
tabcontrals点击页面标签加载表  发帖心情 Post By:2019/7/6 15:15:00 [显示全部帖子]

我想在tabcontrals的SelectedIndexChanged事件中点击页面标签时执行以下代码,表格并没有加载进来,
If  e.Sender.SelectedIndex = 1 Then
    If DataTables.Contains("股东及出资信息") = False Then
        DataTables.Load("股东及出资信息")
        Dim t As Table = Tables("股东及出资信息")
        t.Grid.Styles.EmptyArea.backcolor = color.white '设置表格内空白区域的背景色为 白色
        t.Grid.Styles.EmptyArea.Border.Style = 0   '去表格边框
        t.cols("股份").GrandTotal = True '指定要合计的列
        t.Cols("股本").GrandTotal = True
        t.Cols("认缴出资额").GrandTotal = True
        t.Cols("实缴出资额").GrandTotal = True
        t.GrandTotal = True '显示合计模式
    End If
End If
    

 回到顶部