Why is there a restriction of 30k on a Memo field and is there a way we can increase it.
Cheers
xHarbour 0.99.3 FWH 2.3
MultiGet
- Enrico Maria Giordano
- Posts: 8738
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Has thanked: 1 time
- Been thanked: 2 times
- Contact:
Re: MultiGet
Try this in the ON INIT clause of the ACTIVATE DIALOG command:
EMG
Code: Select all | Expand
#define EM_LIMITTEXT 197
... ON INIT oGet:SendMsg( EM_LIMITTEXT, 0, 0 )
EMG