G
Guest
I have code running that copies data from one form onto another form;
however I need to make sure that the information is only copied to a new
record so that the user can not copy information over an existing record.
Below is the code that I currently have, how to I make sure they are on a new
record only?
IF Currentproject.AllForms("frm1").IsLoaded Then
Forms!frm1.fname = me.firstname
.......
End If
however I need to make sure that the information is only copied to a new
record so that the user can not copy information over an existing record.
Below is the code that I currently have, how to I make sure they are on a new
record only?
IF Currentproject.AllForms("frm1").IsLoaded Then
Forms!frm1.fname = me.firstname
.......
End If