Guus2005
AWF VIP
- Local time
- Today, 15:08
- Joined
- Jun 26, 2007
- Messages
- 2,642
I don't like bound forms. Because of what happens when you're not watching.
I've inherited an application in which there are several bound forms.
The customer now wants a save button on one of the forms.
It is easy to make that work
But what if the record is cancelled?
The autonumber ID field gives me a number which record i can delete from the table easily. But the damage is already done.
Is there another way?
If tried this also.
Awaiting your instructions and witty comments.
I've inherited an application in which there are several bound forms.

The customer now wants a save button on one of the forms.
It is easy to make that work
Code:
DoCmd.RunCommand acCmdSaveRecord
But what if the record is cancelled?
The autonumber ID field gives me a number which record i can delete from the table easily. But the damage is already done.
Is there another way?
If tried this also.
Code:
me.Undo
sendkeys "{ESC}"
Awaiting your instructions and witty comments.