jackie77
Jackie
- Local time
- Today, 22:34
- Joined
- Jul 18, 2007
- Messages
- 85
Hi all 
I have a form with 2 combo fields one which shows who a job is initally assigned to, called Initials and one which shows who actually carried out the job called Initals2
what I want it to do is to automatically copy the name in the initials field to the initials2 field but be able to change if necessary
I have managed to do the first part and i can sucessfully copy the name to the field however it will not let me change it
the code I have use is
Any suggestions?
Cheers
Jackie
I have a form with 2 combo fields one which shows who a job is initally assigned to, called Initials and one which shows who actually carried out the job called Initals2
what I want it to do is to automatically copy the name in the initials field to the initials2 field but be able to change if necessary
I have managed to do the first part and i can sucessfully copy the name to the field however it will not let me change it
the code I have use is
Code:
Private Sub Initials2_BeforeUpdate(Cancel As Integer)
Me.Initials2 = Me.Initials
End Sub
Any suggestions?
Cheers
Jackie