我在表单上有几个字段,这些字段绝对不会显示设置为“是/否”的布尔值,下拉菜单设置为仅提供“是/否”作为选项,但是无论我做什么,表单上显示的值始终显示True / False。下图:
在这一点上,我不确定是什么原因造成的,但这有点烦人。
答案 0 :(得分:0)
如果要使用ComboBox,请按照以下步骤设置ComboBox属性
在数据部分:
Control Source = <name of your table or query column>
Row Source Type = Value List
Row Source = -1;Yes;0;No ' Alternating values and texts.
Bound Column = 1
Limit To List = Yes
在格式部分
Column Count = 2 ' Because we have a value and a text.
Column Widths = 0cm ' This makes the first column invisible.