memo field (1 Viewer)

jerry28ph

jerry
Local time
Yesterday, 18:56
Joined
Nov 16, 2008
Messages
141
I have a memo field on my form and im using this field to store information about the customer order status. How can I add new information with the username and date attach at the end without overwriting the old information after i click the "Save" button. I dont want to go directly to the memo field and enter the messae coz I have some field value to add on it.

ex:

customer called to follow up order status. <jerry><5-13-2009>

received email from this customer <john><5-14-2009>

Please help.
Thanks

Jerry





I want to use another field name
 

HiTechCoach

Well-known member
Local time
Yesterday, 20:56
Joined
Mar 6, 2006
Messages
4,357
You can add text to a control on a form using something like:

Me.txtMyMemo = Me.txtMyMemo & vbCRLF & "customer called to follow up order status. <jerry><5-13-2009>"


I would recommend not using a memo field, but a separate table where a new record is create for each comment. Use separate field for the data/time, user, comment, contact type, etc.
 
Last edited:

jerry28ph

jerry
Local time
Yesterday, 18:56
Joined
Nov 16, 2008
Messages
141
Thank so much.. it works.
More power HiTechCoach


You can add text to a control on a form using something like:

Me.txtMyMemo = Me.txtMyMemo & vbCRLF & customer called to follow up order status. <jerry><5-13-2009>


I would recommend not using a memo field, but a separate table where a new record is create for each comment. Use separate field for the data/time, user, comment, contact type, etc.
 

Users who are viewing this thread

Top Bottom