Hi,
I need use keyboard to input a player name. char m_PlayerName[16];
when I use
case WM_KEYDOWN:
// the wParam value is a Capital letter.
How do I get a combine letter such as Shift + A?
Thanks a lot.
try WM_CHAR instead of WM_KEYDOWN. The WPARAM will have the proper capitalization.