Trying to use a button "Cmd_Undo" to undo the last action performed in multiple subforms. any suggestions on what i am doing wrong with the following code? It does not generate any errors but it does not remove last action performed in subform.
Private Sub Command379_Click()
If Me.Dirty Then
Me.Undo
End If
End Sub
Private Sub Command379_Click()
If Me.Dirty Then
Me.Undo
End If
End Sub