Home » U++ Library support » U++ Library : Other (not classified elsewhere) » Append line into LineEdit or DocEdit
Re: Append line into LineEdit or DocEdit [message #47091 is a reply to message #47088] |
Thu, 01 December 2016 14:31  |
 |
deep
Messages: 268 Registered: July 2011 Location: Bangalore
|
Experienced Member |
|
|
Hi,
If you want to keep appending new lines to LineEdit following will work.
LineEdit lineedit;
for ( int i = 0; i < 10; i++ )
{
s.Clear();
s << "String >> " << i << "\n";
lineedit.Paste ( s.ToWString() );
}
Warm Regards
Deepak
|
|
|
Goto Forum:
Current Time: Wed May 14 00:08:20 CEST 2025
Total time taken to generate the page: 0.01009 seconds
|