Maximum Length of String in Delphi property Lines of TMemo [duplicate]

我是研究僧i 提交于 2020-01-03 13:07:13

问题


I've been searching the reason why the maximum length of String in a TMemo.Lines is 1024, but not found yet.

I have a text file which contains delimited / csv data which length is around 2000 characters. I use a memo to preview it before I process the file.

memo.Lines.LoadFromFile(textFile);

I have set the WordWrap to FALSE, and scrollBar to ssHorizontal. So any record will not be wrapped to the next line.

But when I iterate the memo.Lines, I found that the maximum String hold in each index is 1KB or 1024 characters. The rest is truncated to the next line.

But if I use TStringList to load the file, the row is not truncated to the next index when it reaches more than 1024 characters. This is not happen when I use TRichEdit.

  1. Anyone can explain this phenomena?
  2. Is it the default behavior of TMemo?

I use D2006 to try this.


回答1:


WishKnew try this links

https://forums.embarcadero.com/thread.jspa?threadID=14035

http://www.borlandtalk.com/line-length-in-tmemo-vt67596.html

http://groups.google.com/group/borland.public.delphi.vcl.components.using/browse_thread/thread/318fe3240d2860ba

As the great Peter Below says :

...This has nothing to do with the appearend line length limit. This limit is really just visual, caused by the way the control renders its text.

Bye.




回答2:


There's a TeamB answer on this thread: https://forums.embarcadero.com/thread.jspa?threadID=14035

I'm surprised that TStringList didn't work for you. I'm not quite sure what you mean by

the row is not truncated to the next index when it reaches more than 1024 characters.

I'm assuming the lines are delimited by newlines or CRLFs. Why would it matter if a CSV line exceeded 1024 characters? Please post more details.



来源:https://stackoverflow.com/questions/1365647/maximum-length-of-string-in-delphi-property-lines-of-tmemo

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!