某组合框绑定到客户表,希望从该组合框选择一个客户后,能够将该客户的电话和姓名填入另两个文本框中。
为实现此目的,可将该组合框的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