Undo / detect changes in a subform

K

kcsims

I want to be able to detect changes in a subform and undo or save them. I am
using "How to Undo or Rollback Main Form and Subform Changes" from FrmSmp97
using modUndoMain&Subform with the following code on cmdCancel:

Private Sub Form_Current()
SaveSub Me![chdASSET_MANAGER_RESULTS].Form, "INTERVAL TEMP"
End Sub
Private Sub cmdCANCEL_Click()
UndoSub Me![chdASSET_MANAGER_RESULTS].Form, "INTERVAL TEMP"
End Sub

This works fine using a backup table called "INTERVAL TEMP" to undo changes
to the subform. I want to be able to detect changes made to that table to be
able to enable the cmdCancel button on the mainform. Any help would be
great. Thanks.
 
M

Michel Walsh

The ADH handbook has details about it, and probably your reference too, I
imagine. What seems missing, from 50000 miles of altitude, is that you do
not seem to use transaction. Indeed, rolling back a transaction will undo
the batch of modifications brought to the database since the start of the
transaction. The problem is that the Access Forms start their own internal
transaction, and you have to cooperate with them. The list of details is
well described in ADH 97 (Access 97 Developers' Handbook), or later, but I
cannot put my hand on that book at the moment... I just hope you can.


Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top