单击复选标记,访问,VBA代码时将值解析为变量

时间:2017-12-15 21:27:11

标签: ms-access access-vba

单击复选框时,将值解析为数据库中不同字段的VBA代码是什么?

示例代码(不起作用):

Private Sub Step_1_Click()

If Step_1.Value = True Then
Step1_score.Value = 10
End if

End Sub

我删除了"值"没有代码错误,但10没有显示在db中的Step1_score变量中。有关VBA代码的任何建议,要从复选标记中解析值?谢谢!

1 个答案:

答案 0 :(得分:0)

您可能希望使用_AfterUpdate事件确保在事件触发前更改Step_1的值:

Private Sub Step_1_AfterUpdate()

If Step_1.Value = True Then
Step1_score.Value = 10
End if

End Sub