在CheckedComboBox控件,显示列为“货损代号”。在SelectedIndexChanged事件中得到对应货损代号的货损描述列值。
Dim lst As WinForm.CheckedComboBox
lst = e.Form.Controls("CheckedComboBox1")
Dim dr As DataRow = lst.SelectedItem
if dr IsNot nothing then
e.Form.Controls("TextBox20").value = dr("货损描述")
end if
但提示错误。不知那里出错了,请各位指点!
此主题相关图片如下:未命名1.gif
CheckedComboBox控件是绑定数据库的。此数据库有两列,一列为货损代码,一列为货损描述
哦,忘记在SelectedIndexChanged事件加入如下代码:
Dim lst As WinForm.CheckedComboBox
lst = e.Form.Controls("CheckedComboBox1")
Dim dr As DataRow = lst.SelectedItem
if dr IsNot nothing then
e.Form.Controls("TextBox20").value = dr("货损描述")
end if
不好意思!
不需要在SelectedIndexChanged事件加代码;
把下面代码放到CheckedComboBox1 的 textchenged事件中:(只适合选择单项内容)
Dim lst As WinForm.CheckedComboBox
lst = e.Form.Controls("CheckedComboBox1")
if lst.text = nothing then
e.Form.Controls("TextBox1").value = ""
else
dim dr as DataRow = DataTables("货损信息").find("货损代码 = '" & lst.value & "'")
if dr isnot nothing then
e.Form.Controls("TextBox1").value = dr("货损描述")
end if
end if
[此贴子已经被作者于2009-5-5 20:13:23编辑过]
楼主,测过不,单项选择可以,但多项就出错呀.如单项的话,还不如用ComboBox.楼主试过多项可以吗?
哈哈~ 搂主是你自己啊~!!!
多项选择,要请教其他老师或狐爸了。。。。 sorry!
顺便问一下: 一共有多少选项啊? 或是不确定?
[此贴子已经被作者于2009-5-5 20:26:34编辑过]
那肯定不止两个呀,是不确定的.可以达到,只不过繁杂了点.