-- [求助]关于窗口中控件的问题
这个是我在afterload事件中设置的代码,要实现如果"状态"列中某一行的内容是中心审批那么窗口中的这两个控件不允许使用
If Tables("避免隐患嘉奖平台").Current("状态") = "中心审批" Then
e.Form.Controls("TextBox1").Enabled = False
e.Form.Controls("ComboBox1").Enabled = False
Else
e.Form.Controls("TextBox1").Enabled = True
e.Form.Controls("ComboBox1").Enabled = True
End If
If Tables("避免隐患嘉奖平台").Current("状态") = "已完成" Then
e.Form.Controls("TextBox1").Enabled = False
e.Form.Controls("ComboBox1").Enabled = False
Else
e.Form.Controls("TextBox1").Enabled = True
e.Form.Controls("ComboBox1").Enabled = True
End If
请老师帮忙看看是什么地方做的不对