hello,
I don’t understand much of ascii / unicode,
I only know that it’s crime if you collect data from different sources.
RichTextCtrl returns a unicode-object.
Typing special characters, like é ö
returns a unicode with values above 127,
and thus the result can’t be written to a file.
Finally I found that encoding the unicode to a string, makes it
possible to save the string to a file:
line = RichTextCtrl_Instance.GetValue ()
line = line.encode('windows-1252')
Is this normal behavior or is this a bug ?
thanks,
Stef Mientki