将复选框值放入 Ms Access 中的数字字段
Posted
技术标签:
【中文标题】将复选框值放入 Ms Access 中的数字字段【英文标题】:put checkbox value to number field in Ms Access 【发布时间】:2016-10-16 12:31:26 【问题描述】:我在 ms 访问时有 3 个复选框,我想将特定数字放入数字字段 例如,当它们中的每一个都被检查时,例如
PcType as Number
type1 check1, type2 check2, type3 check3
何时:
type1 checked -> PcType = 1
type2 checked -> PcType = 2
type1 & type2 checked -> PcType = 4
等等..
【问题讨论】:
亲爱的检查这个***.com/questions/3813760/…也support.office.com/en-us/article/… 谢谢亲爱的,可惜还是没有得到答案 【参考方案1】:If Me.Type1 = True and Me.Type2 = False Then
PCType = 1
ElseIf Me.Type2 = True and Me.Type1 = False Then
PCType = 2
ElseIf Me.Type1 = True and Me.Type2 = True Then
PCType = 4
ElseIf ... <further conditions go here>
End If
这是假设您想为每个不同的场景硬编码 PCType 的值(即,当只勾选 check1 和 check3 时设置不同的 PCType 值,当所有三个都勾选时设置另一个唯一值等)
您还可以通过使用分支 if 语句进一步简化它:
If Me.Type1 = True Then
If Me.Type2 = False Then
PCType = 1
ElseIf ...
End If
End If
但是,根据您提供的信息,很难举出这方面的例子。
【讨论】:
以上是关于将复选框值放入 Ms Access 中的数字字段的主要内容,如果未能解决你的问题,请参考以下文章
一个char阵列 放入一堆数字,输出用啥?%s,还是%d , 还是%c?