schmir1
asked on
me.undo versus RunCommand acCmdUndo
What is the differences, advantages, and disadvantages between Me.Undo and RunCommand acCmdUndo? I'm using both in my code.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
The accepted method is this:
If Me.Dirty Then Me.Dirty = False
If Me.Dirty Then Me.Dirty = False
ASKER
That will save the record?
If it's dirty, yes ...
ASKER
Excellent solution.
ASKER
You are good. I would never have suspected that setting "Me.Dirty" = false would save the record. Thanks for your help.
ASKER