G
Guest
win XP and office 2003
I have a text box (memo) that I am entereing data into on a continuous form
called [ItemNote].
I am currently inserting data into that field based on the data typed into
another field on the form. For some reason, when the data is put into this
field via this autoamtic method it won't copy that information to a new
record using the following code:
Private Sub itemNote_AfterUpdate()
'copies the last note entered to the new record
Me!itemNote.DefaultValue = """" & Me!itemNote & """"
End Sub
However, when I type data in manually - it will remember. How can I get
this data to copy to new records when the data is not typed in but inserted
using code?
I have a text box (memo) that I am entereing data into on a continuous form
called [ItemNote].
I am currently inserting data into that field based on the data typed into
another field on the form. For some reason, when the data is put into this
field via this autoamtic method it won't copy that information to a new
record using the following code:
Private Sub itemNote_AfterUpdate()
'copies the last note entered to the new record
Me!itemNote.DefaultValue = """" & Me!itemNote & """"
End Sub
However, when I type data in manually - it will remember. How can I get
this data to copy to new records when the data is not typed in but inserted
using code?