Foxtable(狐表)用户栏目专家坐堂 → 插入节点


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

主题:插入节点

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


加好友 发短信
等级:婴狐 帖子:23 积分:313 威望:0 精华:0 注册:2017/4/17 10:36:00
插入节点  发帖心情 Post By:2018/1/10 11:27:00 [只看该作者]

老师我只增加了红色部分后(其它代码试过了),能正常看到这个节点,但点出就错。系统提示.
NET Framework 版本:2.0.50727.3615
Foxtable 版本:2017.12.18.1
错误所在事件:窗口,目录列表,AfterLoad
详细错误信息:
未将对象引用设置到对象的实例。

Dim b As new GroupTableBuilder("统计表",DataTables("fa piao管理明细表"))
b.Groups.AddDef("单位")
b.Groups.AddDef("开piao日期",DateGroupEnum.Year,"年")
b.Groups.AddDef("开piao日期",DateGroupEnum.Month,"月" )
b.Groups.AddDef("税项")
b.Totals.AddDef("税额")
b.Build()
Dim fp As WinForm.TreeView = e.Form.Controls("fa piao管理明细")
fp.BuildTree("统计表","单位|年|月|税项")
Dim dt As WinForm.TreeNode
dt = fp.Nodes.Insert("未回款",0)
fp.StopRedraw
For Each nd As WinForm.TreeNode In fp.AllNodes
    Dim Year As Integer = nd.DataRow("年")
    Dim Month As Integer = nd.DataRow("月")
    Select Case nd.Level
        Case 1
            nd.Text = nd.text
        Case 2
            nd.Text = nd.text
    End Select
Next
fp.ResumeRedraw
 最后问一下论怎么插图片呢,上传附件都成功了
[此贴子已经被作者于2018/1/10 11:27:48编辑过]

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/1/10 11:39:00 [只看该作者]

修改代码

 

For Each nd As WinForm.TreeNode In fp.AllNodes
    If nd.DataRow Is Nothing Then
        msgbox(nd.text)
    Else

        Dim Year As Integer = nd.DataRow("年")
        Dim Month As Integer = nd.DataRow("月")
        Select Case nd.Level
            Case 1
                nd.Text = nd.text
            Case 2
                nd.Text = nd.text
        End Select
    End If
Next
fp.ResumeRedraw


 回到顶部