Convert character to virtual key code

后端 未结 7 1453
说谎
说谎 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 10:09

    The general solution is to use the SendMessage WinAPI function. This link describes SendMessage's signature and provides a sample import.

    Oh and, to map VK codes you should use MapVirtualKey - its best to assume the mapping is arbitrary and not logical.

提交回复
热议问题