1. RE: listview limit
- Posted by Al Getz <Xaxo at aol.com> Jul 17, 2003
- 469 views
Derek Parnell wrote: > > > On Thu, 17 Jul 2003 00:34:33 -0300 (07/17/03 13:34:33) > , <rml at rubis.trix.net> wrote: > > > > > Hi Derek; > > > > I'm using listview to show selected frases, and frases bigger than 255 > > are cut, this is why I asked. > > I will do a search for virtual-list. > > > > Sorry, but are you saying that the LENGTH of each line is being > restricted > to 255 characters? Can you show me code that does this? > > -- > > cheers, > Derek Parnell > Windows Listview control... I've tested WinChecking up to something like 2048 chars in ONE column alone, so i KNOW it goes at LEAST that high Take care, Al
2. RE: listview limit
- Posted by Al Getz <Xaxo at aol.com> Jul 18, 2003
- 466 views
Derek Parnell wrote: > > > ----- Original Message ----- > From: "Al Getz" <Xaxo at aol.com> > To: "EUforum" <EUforum at topica.com> > Subject: RE: listview limit > > > > Derek Parnell wrote: > > > > > > > > > On Thu, 17 Jul 2003 00:34:33 -0300 (07/17/03 13:34:33) > > > , <rml at rubis.trix.net> wrote: > > > > > > > > > > > Hi Derek; > > > > > > > > I'm using listview to show selected frases, and frases bigger than 255 > > > > are cut, this is why I asked. > > > > I will do a search for virtual-list. > > > > > > > > > > Sorry, but are you saying that the LENGTH of each line is being > > > restricted > > > to 255 characters? Can you show me code that does this? > > > > > > -- > > > > > > cheers, > > > Derek Parnell > > > > > > > Windows Listview control... > > > > I've tested WinChecking up to something like 2048 chars in ONE > > column alone, so i KNOW it goes at LEAST that high > > Al, > is that 2048 VISIBLE characters? I can only get it to DISPLAY the first > 259 characters. The column still holds all the text, but only displays > the first part of it. > > -- > Derek > Oh ok, i guess you want to use 'in place' editing? For WinChecking, im using a single line edit control with something like a 32k character limit, but the entry is still limited to 2047 chars mainly because of it's kind of use, which probably shouldnt be too long anyway. The only text that displays in the listview is that which is allowed to show when the header is dragged to a wider width. If the user wants to see 2047 characters, they have to click the 'get line' button (which might get changed to a double click in the future). In this way, the user can scroll the full 2047 characters. Im sure this could be extended depending on the needs of the application. So are you in fact using in-place editing then? Take care, Al
3. RE: listview limit
- Posted by Al Getz <Xaxo at aol.com> Jul 19, 2003
- 465 views
Derek Parnell wrote: > > > ----- Original Message ----- > From: "Al Getz" <Xaxo at aol.com> > To: "EUforum" <EUforum at topica.com> > Subject: RE: listview limit > > > [snip] > > > So are you in fact using in-place editing then? > > Its not my problem; its Rubens that's asking. I'm just reporting what > I've found too. > > Hello again, Oh ok i see. I just thought maybe you were using in place editing and found it wasnt possibly to edit more then 259 chars or something. In the program i was talking about, the SLE has the autoHscroll style, so it can handle a lot of characters that way, even though i dont think it would be too practical to go too high. The MLE idea sounds better if you ask me Now you guys got be wondering, if in place editing will allow as many as 2047 characters or not? I guess i'll have to try it at some point. Take care for now, Al