Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private mstrNotes as String
Private Sub Form_Current()
mstrNotes = Me.notes.Value
End Sub
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.notes.Value = mstrNotes Then
'-- Nothing's changed
Else
'-- Something has changed.
End If
End Sub