Convert character to virtual key code

后端 未结 7 1444
说谎
说谎 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:55

    It looks like it takes the ASCII character and turns it into hex. For example, 'A' in hex is 41. According to your chart, A is 0x41, which is right (the 0x detonates hex).

提交回复
热议问题