Of course, I'm not trying to load a new menu though, I'm trying to change that ID.
Example:
Window is created bia CreateWindowEx with the HMENU value set to 1.
The user clicks the window.
The WM_LBUTTONDOWN event fires changing the HMENU value to 2, and redraws the window (Which gets that value as a basis for what it draws)
Then reset the value when WM_LBUTTONUP fires, and redraw the window.
That's not exactly what I'm going for, but close enough. I mainly just want to know how to change the HMENU value.
I was afraid that might be the answer. The main reason I'd want to do this is because I like as little code as possible. Actually, I already wrote the code re-drawing in the approprite areas, now I'm just curious if it's even possible.