SelectedItem

列表项目来自于数据表时,可用此属性返回或设置所选择的行(DataRow类型)。
如果是自定义列表项目,此属性等同于SelectedValue

示例

某组合框绑定到客户表,希望从该组合框选择一个客户后,能够将该客户的电话和姓名填入另两个文本框中。
为实现此目的,可将该组合框的SelectedIndexChanged事件代码设为:

Dim cm As WinForm.ComboBox = e.Form.Controls("ComboBox1")
Dim
dr As DataRow = cm.SelectedItem
If
dr IsNot Nothing Then
    e.Form.Controls(
"txtName").Value = dr("姓名")
    e.Form.Controls(
"txtTel").Value = dr("电话")
End
If

 


本页地址:http://www.foxtable.com/webhelp/topics/0932.htm