F
fishqqq
I have a memo field that i would like the user to be able to update as
follows:
CURRENT USER - NOW()
The problem is the next time the user updates the field (via an update
button i've attached the code below to) , they delete the previous
data that was in the field.I would like the new data to be placed
before the old data and the old data to be moved down one line
(vbCrLf) I know there is something wrong with my code but i'm not
certain what it is. access is telling me the problem is with this
portion " Note__invoice_notes_ = " but i can't tell what.
Private Sub Command6_Click()
Me.Note__invoice_notes_ = Now() & " - " & Forms![User ID and NOW()]!
[fCurrentUser]![user now()] & " - " & "" & vbCrLf &
Note__invoice_notes_
Note__invoice_notes_.SetFocus
Note__invoice_notes_.SelStart = 28
any help is greatly appreciated.
follows:
CURRENT USER - NOW()
The problem is the next time the user updates the field (via an update
button i've attached the code below to) , they delete the previous
data that was in the field.I would like the new data to be placed
before the old data and the old data to be moved down one line
(vbCrLf) I know there is something wrong with my code but i'm not
certain what it is. access is telling me the problem is with this
portion " Note__invoice_notes_ = " but i can't tell what.
Private Sub Command6_Click()
Me.Note__invoice_notes_ = Now() & " - " & Forms![User ID and NOW()]!
[fCurrentUser]![user now()] & " - " & "" & vbCrLf &
Note__invoice_notes_
Note__invoice_notes_.SetFocus
Note__invoice_notes_.SelStart = 28
any help is greatly appreciated.