WinForms: IsWindowUnicode returns false
For some reason, IsWindowUnicode returns false. How can I force it to become true?
I need it to change the window title, because some of the characters of the title become "?"
2 Replies
IsWindowUnicode function (winuser.h) - Win32 apps
Determines whether the specified window is a native Unicode window.
It's determined by the
RegisterClass
function
Maybe you'd need to use RegisterWindowExW
?
Oh you're using windows form smh... i didn't read that