以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  想把所有表进行可见或编辑控制  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=120655)

--  作者:LXP166
--  发布时间:2018/6/21 12:16:00
--  想把所有表进行可见或编辑控制
For Each dt As DataTable In DataTables
   dt.Visible = False
   dt.AllowEdit = False
Next

以上代码不能执行?

--  作者:LXP166
--  发布时间:2018/6/21 12:26:00
--  
For Each dt As DataTable In DataTables
   dt.Visible = False
   dt.AllowEdit = False
Next
以上不能执行下面能执行 为什么?


For Each dt As Table In Tables
  dt.Visible = False
  dt.AllowEdit = False
Next
而这个能执行

--  作者:有点甜
--  发布时间:2018/6/21 12:28:00
--  
datatable没有visible属性。