i wanna send the ~ key to an app using sendmsg my question is what value should be wm_keydown be and vk_~ or whatever its called
Printable View
i wanna send the ~ key to an app using sendmsg my question is what value should be wm_keydown be and vk_~ or whatever its called
~ is called Tild if thats what your asking for the second part of your question. Im not sure what key it would be using vbkey_?... but the Key value is 192.
chr$(126)
The only constant I could find for the 'tilda' key is one of the VK OEM keys (dependant on country).
VK_OEM_3 (C0)
Edit: Here is a MSDN link.
Bruce.