Board index » delphi » D5 -tmemo - max size?

D5 -tmemo - max size?

does anyone know the maximum size  of  text that will fit
in a tmemo component.

Roger

 

Re:D5 -tmemo - max size?


Quote
Roger A wrote in message <8h8gjh$fa...@flood.weeg.uiowa.edu>...
>does anyone know the maximum size  of  text that will fit
>in a tmemo component.

I came across this the other day, I think its around 32Kb, or some other
surprisingly small amount.
I used a third party Memo component called TPlusMemo to get round it.

A bit of a vague answer, but I hope it helps.

    Austin.

Re:D5 -tmemo - max size?


No limit under WinNT.
Quote
"Austin Wade" <awn...@ostensible.co.uk> wrote:
>Roger A wrote in message <8h8gjh$fa...@flood.weeg.uiowa.edu>...
>>does anyone know the maximum size  of  text that will fit
>>in a tmemo component.

>I came across this the other day, I think its around 32Kb, or some other
>surprisingly small amount.
>I used a third party Memo component called TPlusMemo to get round it.

>A bit of a vague answer, but I hope it helps.

>    Austin.

Re:D5 -tmemo - max size?


Quote
Jim Eadie wrote in message ...
>No limit under WinNT.

Good point.  If your software only runs on NT then you don't have a problem.
Obviously it depends on what type of application you are writing, and who it
will be distributed to.

Re:D5 -tmemo - max size?


Quote
> "Roger A" <roger-ander...@uiowa.edu> wrote:
>does anyone know the maximum size  of  text that will fit
>in a tmemo component.

I think TMemo is only a wrapper around the Win32 API memo object so
it's size is dependent on what platform your app is running on, Under
Win9x it's about 32k but under NT it's megs in size.

--
Peter Collis, Inverell Australia

email: cpby...@abeguarg.pbz.nh
 * ROT13 for email address *

Re:D5 -tmemo - max size?


"Roger A" <roger-ander...@uiowa.edu> skrev i en meddelelse
news:8h8gjh$fa6$1@flood.weeg.uiowa.edu...

Quote
> does anyone know the maximum size  of  text that will fit
> in a tmemo component.

TMemo is wrapper around Windows multiline edit control.
And Windows multiline edit control has a maximum text limit of 65,535 bytes.

Finn Tolderlund

Other Threads