老师好!
在以下案例中,如何实现在COMBOBOX1中选择“型号”之后,COMBOBOX2的内容马上根据此“型号”的变化而变化。现在的情况是,在combobox1选择后,combobox2的内容并没有马上改变,而是需要通过下拉菜单来选择才会改变。
谢谢!
1、在窗口的AfterLoad事件中加入代码:
Dim cmb As WinForm.ComboBox =
e.form.Controls("ComboBox1")
cmb.ComboList = DataTables("表A").GetComboListString("型号")
2、在ComboBox2的Enter事件中加入代码:
Dim cmb As WinForm.ComboBox =
e.Sender
Dim str
As
string = e.Form.Controls("ComboBox1").Value
cmb.ComboList = DataTables("表A").GetComboListString("规格", "型号 =
'" & str & "'")