以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 窗口中表 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=126155) |
-- 作者:kaituozhe -- 发布时间:2018/10/15 18:44:00 -- 窗口中表 如何遍历窗口中的所有表? |
-- 作者:有点蓝 -- 发布时间:2018/10/15 20:19:00 -- For Each c As WinForm.Control In e.Form.Controls If Typeof c Is WinForm.Table Then Dim t As Table = c.Table \'使用特定类型的变量引用控件 msgbox(t.Name) End If Next [此贴子已经被作者于2018/10/15 20:18:55编辑过]
|