以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  怎么写代码判断表的某列是表达式列或只读列  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=71676)

--  作者:2
--  发布时间:2015/7/16 0:48:00
--  怎么写代码判断表的某列是表达式列或只读列
rt
--  作者:大红袍
--  发布时间:2015/7/16 9:38:00
--  
Dim dc As DataCol  = DataTables("表C").DataCols("c")
Dim pi As System.Reflection.PropertyInfo = dc.Gettype.getproperty("IsTemporary",Reflection.BindingFlags.nonpublic Or Reflection.BindingFlags.Instance)
output.show( pi.getvalue(dc,Nothing))

--  作者:2
--  发布时间:2015/7/16 17:56:00
--  
谢谢大红袍老师