aardvick said:
I can't seem to get the OnDirty event to fire when I edit data in a
continuous form. Any ideas?
Are you talking about a particular form that happens to be a continuous
form, or are you observing this behavior on all continuous forms?
Bear in mind that a form's Dirty event fires -- regardless of whether it's
in single-form view or continuous forms view -- only when a record is first
dirtied by user action. If the record is dirtied by code before any user
action to dirty it, then the Dirty event will not fire. So if you have a
bound form on which the Dirty event will not fire, the most likely cause is
that you have code in the form's Current event (or possibly some other
event) that modifies a bound field on the form before the user does anything
to the record.