You got a good answer, there is no such thing as referring to a line of a memo, you can only copy it out and then changing this copied line of course does only change the memo, if you then put it back. There are no easy line oriented commands like replace line 2 or such. If you want to easily work on the lines of memo fields you better create a new table which relates several records (one for each memo line) to the main record and then have each line as separate record in its own "cell".
VFP has enough string functions, so you can cope with the situation as advised and pull out lines via MEMLINES or ALINES, process them one by one (or just the 2nd,3rd) and put them back together. But no, adressing separate rows is much easier, if you talk of records of a dbf than of text rows of a memo. VFP is a database, not a word processor (besides they orientate on paragraphs, sentences rather than lines).
If you're misusing memo to store data of several rows, then that's how you're "punished" for that. Better create a better data schema for your needs.
Bye, Olaf.