 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
André Taffarello Guest
|
Posted: Fri Nov 21, 2003 11:07 am Post subject: TMemo limit |
|
|
Hi, there
Is there a way to overpass the 64k limit of TMemo under Win9x?
Maybe another equivalent component without this limit?
[]'s
André
|
|
| Back to top |
|
 |
Oren (Halvani.de) Guest
|
Posted: Fri Nov 21, 2003 12:05 pm Post subject: Re: TMemo limit |
|
|
use TRichEdit instead and include these lines into Form1->Create( ) or
Form1->Show( )
SendMessage(RichEdit1 ->Handle, EM_EXLIMITTEXT,
0,(LPARAM)(DWORD)12582912);
RichEdit1->SetFocus();
Oren
|
|
| Back to top |
|
 |
Jonathan Arnold Guest
|
Posted: Fri Nov 21, 2003 2:06 pm Post subject: Re: TMemo limit |
|
|
André Taffarello wrote:
| Quote: | Is there a way to overpass the 64k limit of TMemo under Win9x?
Maybe another equivalent component without this limit?
|
Another possibility, besides using a TRichEdit, is to use a third
party component. Check my web site for some, but I know that Orpheus,
the now public source component library from Turbopower, has one
that allows unlimited lines.
--
Jonathan Arnold C/C++/CBuilder Keen Advice:
http://www.keen.com/categories/categorylist_expand.asp?sid=5156620
Comprehensive C++Builder link site:
http://www.buddydog.org/C++Builder/c++builder.html
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Fri Nov 21, 2003 8:23 pm Post subject: Re: TMemo limit |
|
|
"André Taffarello" <andreNOSPAM (AT) enaltaNOSPAM (DOT) com.br> wrote
| Quote: | Is there a way to overpass the 64k limit of TMemo under Win9x?
|
No, TMemo is limited by the OS, you cannot increase its limit. Use a
TRichEdit instead, it can have its limit increased programmably.
Gambit
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|