首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > PB >

怎么快速判断到数据窗口对象属性允许有表达式

2012-03-19 
如何快速判断到数据窗口对象属性允许有表达式如何快速判断到数据窗口对象属性允许有表达式如:column.visib

如何快速判断到数据窗口对象属性允许有表达式
如何快速判断到数据窗口对象属性允许有表达式

如:column.visible......

[解决办法]
string ss
ss = dw.Describe("jmbz.visible")
IF not (ss = "!" OR ss = "?") THEN
--对象属性允许有表达式

end if
[解决办法]

C/C++ code
string lsls = dw_1.describe("col.属性")if dw_1.modify("col.属性 = '1~t2'") = '' then    //可以写表达式    dw_1.modify("col.属性='" + ls + "'") //还原原属性end if 

热点排行