<div dir="auto"><div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Em dom., 20 de nov. de 2022 04:23, Bo Berglund via lazarus <<a href="mailto:lazarus@lists.lazarus-ide.org">lazarus@lists.lazarus-ide.org</a>> escreveu:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Fri, 18 Nov 2022 18:40:57 -0300, Flávio Etrusco via lazarus<br>
<<a href="mailto:lazarus@lists.lazarus-ide.org" target="_blank" rel="noreferrer">lazarus@lists.lazarus-ide.org</a>> wrote:<br>
<br>
>Em dom., 13 de nov. de 2022 às 18:36, Luca Olivetti via lazarus <<br>
><a href="mailto:lazarus@lists.lazarus-ide.org" target="_blank" rel="noreferrer">lazarus@lists.lazarus-ide.org</a>> escreveu:<br>
><br>
>> El 12/11/22 a les 12:13, Bo Berglund via lazarus ha escrit:<br>
>> > On Sat, 12 Nov 2022 09:45:15 +0100, Luca Olivetti via lazarus<br>
>> > <<a href="mailto:lazarus@lists.lazarus-ide.org" target="_blank" rel="noreferrer">lazarus@lists.lazarus-ide.org</a>> wrote:<br>
>> ><br>
>> >> El 11/11/22 a les 23:37, Bo Berglund via lazarus ha escrit:<br>
>> >><br>
>> >>> But how to jump to the end of the text on screen?<br>
>> >>><br>
>> >><br>
>> >> TheSynEdit.TopLine:=TheSynEdit.Lines.Count-TheSynEdit.LinesInWindow+1<br>
>> >><br>
>> ><br>
>> > Did not work, but this does work:<br>
>><br>
>> Strange, I've been using it for many years (and still use it) to ensure<br>
>> the last line is visible.<br>
>><br>
>> (...)<br>
>> --<br>
>> Luca Olivetti<br>
>> Wetron Automation Technology <a href="http://www.wetron.es/" rel="noreferrer noreferrer" target="_blank">http://www.wetron.es/</a><br>
>> Tel. +34 93 5883004 (Ext.3010)  Fax +34 93 5883007<br>
>><br>
><br>
> It should work. Or even straight<br>
>"TheSynEdit.TopLine:=TheSynEdit.Lines.Count;'.<br>
<br>
My current version of my logging tool application uses this to display incoming<br>
data on the serial port (where it ends up in the TBytes buffer DataBuffer[]<br>
before displaying):<br>
<br>
...<br>
  SetLength(DataTxt, Length(DataBuffer)); //Set string length<br>
  Move(DataBuffer[0], DataTxt[1], Length(DataBuffer)); //Copy data to string<br>
  {$ifdef USESYNEDIT}<br>
    synRxData.Lines.Beginupdate;<br>
    synRxData.Lines.Text := DataTxt;<br>
    synRxData.CaretY := synRxData.Lines.Count;<br>
    synRxData.Lines.Endupdate;<br>
    stxLineCount.Caption := IntToStr(synRxData.Lines.Count);<br>
  {$else}<br>
...<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">I see. My point is that you don't need to copy the whole DataBuffer and re-populate the whole SynEdit each time you receive new data. But this probably won't matter much unless you have hundreds of thousands of lines running on not so recent hardware.</div><div dir="auto"><br></div><div dir="auto">Best regards,</div><div dir="auto">Flávio </div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br></blockquote></div></div></div>