控件的属性,先去帮助把这个控件的帮助看一看,在把【通用成员】看完:http://www.foxtable.com/webhelp/scr/0713.htm
比如有函数,setControls
dim e = args(0)
Dim value As Boolean = args(1)
e.form.controls("TextBox1").enabled = value
e.form.controls("TextBox2").enabled = value
设置一批控件不可编辑按钮事件
Functions.Execute("setControls",e,false)
设置一批控件可编辑按钮事件
Functions.Execute("setControls",e,true)