Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WM_COMMAND WM_NOTIFY custom notification code

Tags:

winapi

mfc

I wish to define a new nofication id that will be used in WM_COMMAND messages of my subclassed control. But I failed to find any rules of creating user control-defined notification codes.

like image 522
Voivoid Avatar asked Jul 21 '11 09:07

Voivoid


1 Answers

See technical note 20, 21 and 22 on that:

  • TN020: ID Naming and Numbering Conventions

  • TN021: Command and Message Routing

  • TN022: Standard Commands Implementation

Short answer: pick a number in the range 0x8000 - 0xDFFF .

like image 92
Roel Avatar answered Sep 28 '22 03:09

Roel