Foxtable(狐表)用户栏目专家坐堂 → Label15绑定


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

主题:Label15绑定

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


加好友 发短信
等级:超级版主 帖子:13837 积分:69650 威望:0 精华:0 注册:2016/11/1 14:42:00
  发帖心情 Post By:2017/2/2 10:08:00 [显示全部帖子]

不要绑定列。

 

窗口afterLoad事件写代码

 

Dim dt As DataTable = DataTables("表A")
Dim count As Integer = dt.compute("count(_Identify)", "状态 = '学习中'")
If count >= 1 Then
    forms("窗口1").controls("label1").Text = "学习中"
Else
    count = dt.compute("count(_Identify)", "状态 = '未学习'")
    If count = dt.datarows.count Then
        forms("窗口1").controls("label1").Text = "未学习"
    Else
        forms("窗口1").controls("label1").Text = "已学习"
    End If
End If


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


加好友 发短信
等级:超级版主 帖子:13837 积分:69650 威望:0 精华:0 注册:2016/11/1 14:42:00
  发帖心情 Post By:2017/2/2 16:30:00 [显示全部帖子]

Dim dt As Table = Tables("课文窗口_Table1")
Dim count As Integer = dt.compute("count(_Identify)", "目录_状态 = '学习中'")
If count >= 1 Then
    forms("课文窗口").controls("Label07").Text = "学习中"
Else
    count = dt.compute("count(_Identify)", "目录_状态 = '未学习'")
    If count = dt.Rows.count Then
        forms("课文窗口").controls("Label07").Text = "未学习"
    Else
        forms("课文窗口").controls("Label07").Text = "已学习"
    End If
End If

 回到顶部