Convert character to virtual key code

后端 未结 7 1387
说谎
说谎 2021-01-06 09:40

I have a string of values, and I want to simulate key press events in a window for each character.

I plan on sending WM_KEYDOWN, WM_CHAR, and WM_KEYUP events to the

7条回答
  •  不思量自难忘°
    2021-01-06 09:52

    Generally speaking, instead of sending WM_KEYDOWN, WM_CHAR and WM_KEYUP messages directly, you should use SendInput (preferred) or possibly keybd_event (deprecated).

提交回复
热议问题