|
|||||||||
| Post | Reply | Previous | Next | All Messages |
|
Date: Thu May 8 21:27 From: CChris <christian.cuvier at ag?icul?ure.gouv.fr> Subject: Re: win32lib getLVAllText() |
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
| Post | Reply | Previous | Next | All Messages |