C cadillac Registered User. Local time Today, 03:07 Joined May 9, 2001 Messages 34 Nov 13, 2001 #1 what code can i use in a command button to exit the form without the beforeupdate events happening? this will be an escape for the user if they suddenly don't want to use the form any longer. thanks
what code can i use in a command button to exit the form without the beforeupdate events happening? this will be an escape for the user if they suddenly don't want to use the form any longer. thanks
norman Registered User. Local time Today, 08:07 Joined Apr 18, 2001 Messages 37 Nov 13, 2001 #2 cadillac search access help for 'dirty' I think this will do what you're looking for Norman
T theprez Registered User. Local time Today, 08:07 Joined Nov 8, 2001 Messages 140 Nov 14, 2001 #3 You can use this code for the command button If me.form.dirty then me.form.undo end if I beleive this will work.
You can use this code for the command button If me.form.dirty then me.form.undo end if I beleive this will work.
norman Registered User. Local time Today, 08:07 Joined Apr 18, 2001 Messages 37 Nov 14, 2001 #4 Theprez Thanks for that, it's a lot easier than the access help method!
C cadillac Registered User. Local time Today, 03:07 Joined May 9, 2001 Messages 34 Nov 14, 2001 #5 thanks