Allowing edit on forms.

  • Thread starter Thread starter Rodolfo Fontes
  • Start date Start date
R

Rodolfo Fontes

Hi group,

Is there anyway to check is the form is being edit?
I want to show a message is the user change the form while editing
another one.

Thanks,
Rodolfo Fontes
 
The form's Dirty property is True if an edit is in progress.

If Me.Dirty Then
MsgBox "You're editing"
End If

In recent versions of Access, there is also a Dirty event which fires when
you dirty a record, but - depending on version - may not work if the record
is dirtied by assigning a value programmatically.
 

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