访问表单仅允许编辑最后输入的日期

时间:2017-02-09 17:49:05

标签: ms-access access-vba

无论如何,我可以限制用户只编辑用户表单中的最后一天数据,并禁用所有其他日期的编辑,请注意同一日期有几个数据。

提前致谢

1 个答案:

答案 0 :(得分:1)

以表格VBA写下

Private Sub Form_Current()

if dLast("[YourDateField]" , "[YourTable]") = me.YourFormDate.vlaue then
Me.AllowEdits = True
Else
Me.AllowEdits = False
End if

End Sub