Feb 26, 2009 at 6:22pm
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.
Feb 26, 2009 at 6:54pm
try WM_CHAR instead of WM_KEYDOWN. The WPARAM will have the proper capitalization.