Sep 11, 2002 #1 sabavno Programmer Jul 25, 2002 381 CA Hi Here it is again. I need to check if the record is brought up for the modification into the modification form, but hasn't been changed yet. Any suggestions? Please!
Hi Here it is again. I need to check if the record is brought up for the modification into the modification form, but hasn't been changed yet. Any suggestions? Please!
Sep 11, 2002 #2 Junior1544 Technical User Apr 20, 2001 1,267 US if your using access 2k or better use the dirty property... if me.dirty = true then msgbox "The form has been changed." else msgbox "the form has not been changed." end if --James junior1544@jmjpc.net Life is change. To deny change is to deny life. Upvote 0 Downvote
if your using access 2k or better use the dirty property... if me.dirty = true then msgbox "The form has been changed." else msgbox "the form has not been changed." end if --James junior1544@jmjpc.net Life is change. To deny change is to deny life.
Sep 11, 2002 #3 danvlas Programmer Jul 30, 2002 2,446 RO Just for clarification: Dirty property exists and can be used in Access97 too. I don't know about Access95, never used it. Dirty event was implemented in Access 2K, so it is not available in previous versions. Daniel Vlas Systems Consultant danvlas@yahoo.com Upvote 0 Downvote
Just for clarification: Dirty property exists and can be used in Access97 too. I don't know about Access95, never used it. Dirty event was implemented in Access 2K, so it is not available in previous versions. Daniel Vlas Systems Consultant danvlas@yahoo.com
Sep 13, 2002 #4 Junior1544 Technical User Apr 20, 2001 1,267 US Thanks Dan... I use access 2k, that's why I only realy know access 2k... Thanks! --JAmes junior1544@jmjpc.net Life is change. To deny change is to deny life. Upvote 0 Downvote
Thanks Dan... I use access 2k, that's why I only realy know access 2k... Thanks! --JAmes junior1544@jmjpc.net Life is change. To deny change is to deny life.