1

基本上我所拥有的是一张Customer包含我们客户信息的表格。此表中的字段之一是Customer.CustomerTypeID
我也有一个CustomerType表,它基本上是一个查找表。
我希望该CustomerType.CustomerTypeName字段填充我的组合框,然后当我去保存我的记录时,我希望在CustomerType.CustomerTypeID该字段CustomerType.CustomerTypeName中更新我选择的。Customer.CustomerTypeID

我是否过于复杂了?我是否应该更改它以便将其存储CustomerNameCustomer表中而不是 ID 中?

提前致谢。

4

1 回答 1

5

不,存储ID。

像这样设置你的组合:

Row Source: SELECT CustomerTypeID, CustomerTypeName FROM CustomerType 
Control Source : CustomerTypeID
Bound Column : 1
Column Count : 2
Column widthes : 0, 2

控制源+绑定列表示数据将存储到表单所基于的表中名为CustomerTypeID的字段中,列宽表示隐藏ID列并显示描述。

于 2012-07-12T17:04:30.137 回答