以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 窗口绑定窗口筛选树绑Labe行 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=22417) |
|||||
-- 作者:良才 -- 发布时间:2012/8/12 9:53:00 -- 窗口绑定窗口筛选树绑Labe行
|
|||||
-- 作者:czy -- 发布时间:2012/8/12 12:01:00 -- Dim Names() As String = DataTables("缴学费信息").GetComboListString("姓名","[班级] = \'" & e.Node.name & "\'","_Identify").split("|") For i As Integer = 0 To Names.Length - 1 e.Form.Controls("Lable" & i+1).text = Names(i) Next For i As Integer = Names.Length - 1 To 48 e.Form.Controls("Lable" & i+1).text = "" Next |
|||||
-- 作者:良才 -- 发布时间:2012/8/12 12:58:00 -- 谢谢! |
|||||
-- 作者:良才 -- 发布时间:2012/8/13 15:22:00 --
如果绑定2行(比如“姓名”“照片”)代码怎样写 |
|||||
-- 作者:czy -- 发布时间:2012/8/13 15:27:00 -- 先看看这里
http://www.foxtable.com/help/topics/0392.htm
|
|||||
-- 作者:良才 -- 发布时间:2012/8/18 14:12:00 -- [求助] 如果绑定2行(比如“姓名”“照片”)代码怎样写?缴学费信息是窗口查询表
|
|||||
-- 作者:czy -- 发布时间:2012/8/18 20:10:00 -- 两行?
应该是两列吧? 做好表结构、窗口,将文件传上来。 |
|||||
-- 作者:良才 -- 发布时间:2012/8/19 15:43:00 --
[求助] 如果绑定2列(比如“姓名”“照片”)代码怎样写?缴学费信息是窗口查询表 |
|||||
-- 作者:狐狸爸爸 -- 发布时间:2012/8/19 21:28:00 -- 大概如此,自行调整:
Dim drs As List(of DataRow) = DataTables("缴学费信息").Select("[班级] = \'" & e.Node.name & "\'","_Identify") |
|||||
-- 作者:良才 -- 发布时间:2012/8/20 19:02:00 -- 缴学费信息表有姓名、性别、照片列想把班级人、男、女分别统计代码怎样写?请师傅指点。谢谢! |