是/否数据类型始终显示为True / False-布尔格式问题

时间:2019-01-22 13:58:04

标签: vba ms-access

我在表单上有几个字段,这些字段绝对不会显示设置为“是/否”的布尔值,下拉菜单设置为仅提供“是/否”作为选项,但是无论我做什么,表单上显示的值始终显示True / False。下图:

Showing False
Options with False still showing Data type in the table design

在这一点上,我不确定是什么原因造成的,但这有点烦人。

1 个答案:

答案 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.