Form_Dirty Event

  • Thread starter Thread starter IPIPKIN
  • Start date Start date
I

IPIPKIN

Hi,
After a lot of mostly graphical changes
updates on most of bounded controls stopped to trigger Form_Dirty event
(the first update of course).
What reason might it be?
 
In some versions of Access, the form's Dirty event does not fire if you
dirty the record programmatically.

Look for any code that sets the value of a field. Particularly, anything in
the Current event of the form would be a dead cert.

To help you debug this, you might like to set the form's Record Selector
property to Yes. The icon in the record selector will indicate if the record
is already dirty before you expect it to be.
 
If you have verified that the record was not already dirty (by displaying
the Record Selector, and checking the icon there), the remaining possibility
is that the database is corrupt.

You could try decompiling, and rebuilding.
 

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

Back
Top