![]() |
Copy Text in Memo1 to Memo2
Hi all.
Please how can I copy rows 0-10 of Memo1 to Memo2. Rows in Memo1 is more than 20000th thank you |
AW: Copy Text in Memo1 to Memo2
Delphi-Quellcode:
Memo2.Lines.BeginUpdate;
try for i := 0 to 10 do Memo2.Lines.Add( Memo1.Lines[ i ] ); finally Mome2.Lines.EndUpdate; end; |
AW: Copy Text in Memo1 to Memo2
OK, super.
Thank you |
Alle Zeitangaben in WEZ +1. Es ist jetzt 20:17 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz