I need to transfer the 1st line of Memo1 to Memo2, and move the remaining lines of Memo1 up.
These are the expected results:
I need to transfer the 1st line of Memo1 to Memo2, and move the remaining lines of Memo1 up.
These are the expected results:
Like this:
Memo2.Lines.Add(Memo1.Lines[0]);
Memo1.Lines.Delete(0);