It looks like wxString::UpperCase works only with ASCII-7 characters. If I use Latin-1, it does not work. For example, it does not convert "à" to "?", or "?" to "?". Any way to fix this???
DdJ
2. Re: wxString::UpperCase() does not work properly
#2847
Posted by: 2003-11-03 05:36:10
Well, I recompiled wxWindows for Unicode, as suggested by upcase. I had to change some instruction, but at last I was able to generate a Unicode enabled executable. Now I can read all charsets, and use wxCVConv to convert from/to various encoding, Unicode included. The problem is that when I use encodings like iso-8859-5 (Cyrillic), UpperCase do not work. I need a way to upper case iso-8859-x strings..... But how?