1. win32lib getLVAllText()
- Posted by abec <cccompany at gmail?com> May 08, 2008
- 584 views
Hi all, Returns an extra empty element. e.g. if there are 2 colums, 1 has "John" and the other has "Major", getLVAllText() returns {"John","Major",{}} Abec
2. Re: win32lib getLVAllText()
- Posted by CChris <christian.cuvier at ag?icul?ure.gouv.fr> May 08, 2008
- 609 views
- Last edited May 09, 2008
abec wrote: > > Hi all, > Returns an extra empty element. e.g. if there are 2 colums, 1 has "John" and > > the other has "Major", getLVAllText() returns {"John","Major",{}} > > Abec In getLVItemText(), in win32lib.ew, find the lines:
elsif atom(column) then text = append(text, "") end if
and make the test as
elsif atom(column) and column > 0 then end if
If this is the problem, it's a very old bug (code was there in v57.1). CChris
3. Re: win32lib getLVAllText()
- Posted by abec <cccompany at gmai??com> May 09, 2008
- 596 views
Thanks Chris it did the trick. Abec