mercredi 22 avril 2009

Unicode CString and Qt QString

arg!

with Visual Studio, if you don't define UNICODE in the PREPROCESSOR
then it is straightforward:
CString a("hello");
QString qtstring (a);

but if you define UNICODE then this code does not compile anymore :-/
you should do then:
CString a("hello");
QString qtstring = QString::fromUtf16( a.GetBuffer(), a.GetLength() );

an advise? yes, be careful to encapsulate this sort of transformation in those bloody MFC programs!

Yes I know, I should have spoken about CSV files and SQLite :-)
I will do it soon !

Bye

dimanche 19 avril 2009

My first blog

Waooo My first entry in my blog...
I am so impatient to share some technical point of views et some solutions I have found for helping myself...

stay tuned !!!