Should I put my code on the OnChangeEvent or the BeforeUpdateEvent? If user changes the Bank information!
Private Sub Bank_Change() 'Purpose: User changes bank information.
If MsgBox("WARNING: This could have adverse effects,Are you sure ?", vbYesNo) = vbNo Then
Me!Bank.Undo
End If
End Sub