I have a problem that's a little bit off topic...
How do you compare two wchar_t strings ???
I tried it like this:
if(strcmp((char*)wString1, (char*)wString2) == 0){
}
But it compares only the first letters of the strings !!!
Is the a special function for this, like swprintf() for printf() ???
Cu, Acki