访问VBA:写入所选记录

时间:2017-12-30 18:16:33

标签: access-vba

表单每次显示一条记录。我想,通过单击按钮,系统会在所选记录的行中的数据库表上放置一个值。类似的东西:

DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand write "example" in the field <FieldName> of the selected record

有可能是这样吗?

1 个答案:

答案 0 :(得分:0)

最简单的方法是将字段绑定到文本框,然后将文本框的属性 Visible 设置为False。

现在,在 OnClick 事件中调用此代码:

Me!NameOfTextbox.Value = "example"
' Save the record.
Me.Dirty = False