Dim cmb As WinForm.ComboBox = e.Form.Controls("ComboBox1")
cmb.ComboList = DataTables("表A").GetComboListString("第一列")
上面第一列,录入后,求助实现第二列下拉值条件:满足第一列,下面代码报错
Dim s As String = e.Form.Controls("ComboBox1").Value
Dim cmb As WinForm.ComboBox = e.Form.Controls("ComboBox2")
cmb.ComboList = DataTables("表A").GetComboListString("第二列","[第一列] = s ","_SortKey")
未找到列 [s]。
想实现的效果是:
第一列 下拉选择录入 中国
第二列下拉 只显示中国的省市(不显示国外的省市)
[此贴子已经被作者于2022/12/17 10:48:10编辑过]