我有一个列表框,它是数据绑定到 accdb 文件并显示一列的内容,它链接到的 dataBindingSource 也已被过滤 - 这工作正常(但可能会影响我要问的内容)。
例如,我想知道如何从所选项目的完整记录中提取一个值。列表框当前显示姓氏 - 这就是您所看到的,如何提取未显示但存在于数据绑定源中的客户名字?
这是用于填充列表框的代码:
public frmCustomer(string Input)
{
InitializeComponent();
this.customersTableAdapter.Fill(this.dSSystem.Customers);
this.catsTableAdapter.Fill(this.dSSystem.Cats);
// Display Customer Record
int lvRecIdx = customersBindingSource.Find("AccRef", Input);
customersBindingSource.Position = lvRecIdx;
// Fetch Cats Owned
catsBindingSource.Filter = ("CustRef = '" + Input + "'");
}
谢谢