Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
设置Combobox1的Leave和ComboBox2的Enter事件,判断ComboBox1是否包括"大",如果包括,将其Enable属性设置为False,否则设置为True
ComboBox1控件TextChanged事件代码
If e.Sender.Text.Contains("大") Then
e.Form.Controls("ComboBox2").Enabled = False
Else
e.Form.Controls("ComboBox2").Enabled = True
End If