I can't work out what these messages are. They are sent to a button control. Any ideas please?
Announcement
Collapse
No announcement yet.
message identifiers F3 F4 281 hex
Collapse
X
-
Chris,
most messages are defined in the win32api.inc file. Search there:
Code:' Button Control Messages %BST_UNCHECKED = &H00 %BST_CHECKED = &H01 %BST_INDETERMINATE = &H02 %BST_PUSHED = &H04 %BM_GETCHECK = &HF0 %BM_SETCHECK = &HF1 %BM_GETSTATE = &HF2 %BM_SETSTATE = &HF3 %BM_SETSTYLE = &HF4 %BM_CLICK = &HF5 %BM_GETIMAGE = &HF6 %BM_SETIMAGE = &HF7
-
Input Method Editor - it's for languages with complex characters, East Asian, etc.
Code:%WM_IME_SETCONTEXT = &H0281 %WM_IME_NOTIFY = &H0282
Here's a link to MSDN:
Using an Input Method Editor in a Game
By Jack Lin, Software Design Engineer
Microsoft Corporation
December 2004
They didn't tell me about this when I signed up.
Comment
Comment