We have a memo field in our table, such as:
--------------------------
04/10/01 blah blah blah
03/02/01 this and that
----------------------------
When we click EDIT on this form, the cursor goes to the memo field under the 0 in 04/10/01.
What we want to do is stuff the current date into the field, move all the data down one line and return the cursor up 1 line...so we have ( where _ is the cursor)
--------------------------
04/19/01_
04/10/01 blah blah blah
03/02/01 this and that
----------------------------
We can do everything but move the cursor back up...our program looks like the above, but the cursor is under the 0
in 04/10/01.
What code would move the cursor up and to the end of the line?
--------------------------
04/10/01 blah blah blah
03/02/01 this and that
----------------------------
When we click EDIT on this form, the cursor goes to the memo field under the 0 in 04/10/01.
What we want to do is stuff the current date into the field, move all the data down one line and return the cursor up 1 line...so we have ( where _ is the cursor)
--------------------------
04/19/01_
04/10/01 blah blah blah
03/02/01 this and that
----------------------------
We can do everything but move the cursor back up...our program looks like the above, but the cursor is under the 0
in 04/10/01.
What code would move the cursor up and to the end of the line?