Hi,
Tell, my wx version is 3.0.0.1, so I guess it should be a unicode version, and I'm getting the data directly from the sqlite database, which returns me str or unicode data according to the string content.
Does the unchanged version (those I sent) fails as it does for me ?
Anyway, the line
print type(r), r , "=>",itm.GetText()
shows me that I'm feeding the ListCtrl with unicode string which is well formated but not well taken into account by ListIm.
I realize that I didn't sent the output of my program. As you can see on the console windows, the second line is feed with well formatted data (unicode string, well printed on the screen) but is emptied when passing through the SetText method
(see the output line in the console window :
<type 'unicode'> test éé =>
showing that the r variable is a unicode string corresponding to the "test éé" value but, after I gave it to the ListItm, the result is an empty sring.
Le mardi 30 juin 2015 15:55:58 UTC+3, werner a écrit :
Hi,