How to identify the sender of a WM_COMMAND message?

802 Views Asked by At

I am using VS 2010 c++. I have a dialog window containing an array of 126 identical pushbutton controls sharing the same value for control ID.
When a button is clicked and the host dialog window receives the resulting WM_COMMAND message, how can the dialog window identify which pushbutton is pressed? I could use 126 different control ID values, but I was hoping for something a little more concise.
Can anyone help?

1

There are 1 best solutions below

1
On

ID itself means "what identifies" an object. So you will need to have separate control ID.

There has to be something different about each button control to identify a particular one.

If you want to keep the same control ID, then you can keep track of the handle (HWND) of each button that is created and use the LPARAM parameter of WM_COMMAND message to identify the control by handle.

If you are having unique text for each button then you can use the text property also of the button.