Do you mean notify you as the database designer, or do you mean notify whoever is currently using the form?
If it's the former then you can use something similiar to the following in the AfterUpdate event of the form. It sends you an e-mail.
Dim eTo As String, eSubject As String, eBody As String
eTo = "youremailhere"
eSubject = "Form Update
eBody = CurrentDb.Name & " form has been updated."
DoCmd.SendObject acSendNoObject, "", acFormatTXT, eTo, , , eSubject, eBody, False
Maq
![[americanflag] [americanflag] [americanflag]](/data/assets/smilies/americanflag.gif)
<insert witty signature here>