So, I'm checking to see if a user has made any changes during an edit on a form. To fill the form, I get the chosen record out of the collection and place the values in currentRecord. I then check that against the form values to see if they are different. If they are, a message box pops up asking for confirmation when they want to cancel or exit.
I'm currently doing something like this...
if tmpRec.LastName = currentRecord.LastName And _
tmpRec.FirstName = tmpRec.FirstName And _
so on and so forth...
What I'd like to do is something like this...
if tmpRec = currentRecord then
I'm getting an error when I do that. Something about not supporting the property or method