Rich_Lovina
Registered User.
- Local time
- Tomorrow, 08:55
- Joined
- Feb 27, 2002
- Messages
- 224
I'm using the following code so the user does not re-type same info:
In After_Update,
Me![Deptcode].Tag = Me![Deptcode].Value
And in On_Enter,
If Not (IsNull(Me![Deptcode].Tag) Or Me![Deptcode].Tag = "") Then
Me![Deptcode].Value = Me![Deptcode].Tag
End If
This code is fine except when the form is opened and one record is edited, then if scrolling back or forwards the last edited correction goes and changes all the previously entered texts. I solved this last year but have forgotten what it was.
In After_Update,
Me![Deptcode].Tag = Me![Deptcode].Value
And in On_Enter,
If Not (IsNull(Me![Deptcode].Tag) Or Me![Deptcode].Tag = "") Then
Me![Deptcode].Value = Me![Deptcode].Tag
End If
This code is fine except when the form is opened and one record is edited, then if scrolling back or forwards the last edited correction goes and changes all the previously entered texts. I solved this last year but have forgotten what it was.