Hi All
I’m trying to copy across data between fields on a form when I click a button. The code I’m using is:
Private Sub butCopyDetails_Click()
corAddress1 = address1
corAddress2 = address2
corAddress3 = address3
corTown = town
corPostCode = postcode
corTel = tel
corFax = fax
corEmail = email
corwww = www
End Sub
It works … partly … but for some reason it only shows the data in the new fields once I’ve moved onto a new record and then moved back again. Is there anyway I can solve this e.g. by adding in code that refreshes the fields straight away? I’m confused!
Cheers,
Kenny.