Re: win32lib getLVAllText()
- Posted by CChris <christian.cuvier at ag?icul?ure.gouv.fr> May 08, 2008
- 608 views
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