Steve-vfp9user
Programmer
Hi
I use the following to add entries to a memo field in a table:
This is ok however is it possible to show the newest at the top when the memo field is displayed instead of the entries being added and shown last.
An example of what I mean is, currently when adding an entry the lines would show something like:
Whereas I would like it to show as:
So basically I want the last entry at the top of the list.
Is this possible?
Thank you
Steve
I use the following to add entries to a memo field in a table:
Code:
REPLACE MYNOTES WITH LEFT(TIME(),5)+" - "+DTOC(DATE())+": "This is an entry"+CHR(13) ADDITIVE
This is ok however is it possible to show the newest at the top when the memo field is displayed instead of the entries being added and shown last.
An example of what I mean is, currently when adding an entry the lines would show something like:
Code:
12:45 - 08/06/2015: "This is an entry in my memo field"
12:48 - 08/06/2015: "This is an entry in my memo field"
12:51 - 08/06/2015: "This is an entry in my memo field"
Whereas I would like it to show as:
Code:
12:51 - 08/06/2015: "This is an entry in my memo field"
12:48 - 08/06/2015: "This is an entry in my memo field"
12:45 - 08/06/2015: "This is an entry in my memo field"
So basically I want the last entry at the top of the list.
Is this possible?
Thank you
Steve