Check whether form is is 'edit' mode

  • Thread starter Thread starter DEI
  • Start date Start date
D

DEI

Is there any way to determine programmatically what state a form that s
currently open is in? Whether a record is currently being edited (i.e.
pencil showing on navigation bar) or not. I want to allow users to toggle
between forms, but want to notify them if a record is currently being edited.

I am using the 'IsLoaded' AllForms property to test whether the form is
loaded. How can I test whether a record on a form is being edited. I am
hoping the answer is simple and I am just missing something.

Thanks,

DEI
 
DEI said:
Is there any way to determine programmatically what state a form that s
currently open is in? Whether a record is currently being edited (i.e.
pencil showing on navigation bar) or not. I want to allow users to toggle
between forms, but want to notify them if a record is currently being
edited.

I am using the 'IsLoaded' AllForms property to test whether the form is
loaded. How can I test whether a record on a form is being edited. I am
hoping the answer is simple and I am just missing something.

Thanks,

DEI


Check the Dirty property of the form.
 
Back
Top