例如,您可能想询问用户是否打算对记录进行更改,如果不是,则允许用户移动到下一条记录而不保存更改。
保存记录时,Microsoft Access 将Dirty属性设置为False。当用户对记录进行更改时,该属性设置为True。
以下示例在数据更改时启用btnUndo按钮。UndoEdits ( )子例程从文本框控件的AfterUpdate事件中调用。选择启用的btnUndo按钮可使用OldValue属性恢复控件的原始值。
Sub UndoEdits()
If Me.Dirty Then
Me!btnUndo.Enabled = True ' Enable button.
Else
Me!btnUndo.Enabled = False ' Disable button.
End If
End Sub
Sub btnUndo_Click()
Dim ctlC As Control
' For each control.
For Each ctlC in Me.Controls
If ctlC.ControlType = acTextBox Then
' Restore Old Value.
ctlC.Value = ctlC.OldValue
End If
Next ctlC
End Sub 如果觉得有帮忙,请收藏 点赞 及关注我 @小辣椒高效Office