I'm learning and new to this. I've searched this for a long time and can't find any answer.
Every time I type text in an Edit control, it always turned to lowercase, even when using Shift or CapsLock. I did not put any lowercase/uppercase style on it:
hEditSub = CreateWindow("EDIT", NULL, WS_CHILD | WS_VISIBLE | WS_BORDER | EM_SETHANDLE, 10, 334, 270, 20, hwnd_MainSub, NULL, hInstance_Main, NULL);
Is there any way to make it mixed case (allowing lower and uppercase)? Or is subclassing required?