Revision: 42652
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at March 8, 2011 09:42 by heislekw
Initial Code
Private Sub Form_Current()
Me!cmdUndo.Enabled = False
End Sub
Private Sub Form_Dirty(Cancel As Integer)
Me!cmdUndo.Enabled = True
End Sub
Sub cmdUndo_Click()
DoCmd.RunCommand acCmdUndo
End Sub
Initial URL
Initial Description
Initial Title
Detect if form is being edited - Option 1
Initial Tags
Initial Language
Visual Basic