dharmveersingh

Is it possible to trap in a VC++ application the event generated when the Windows Start menu pops up. What is the message id that is generated for this event

Thanks in advance



Re: Visual C++ General Trapping the Start button click event

Nishant Sivakumar

There's no Windows message generated for a Start button click. You'd have to use a CBT hook to do this. It won't be that straightforward. But then, usually there's no good reason to want to hook the start button.





Re: Visual C++ General Trapping the Start button click event

dharmveersingh

Thanks, pal, i thought so.