I want to have a help message come when the user Right Clicks a CButton Control. The message would be different for every implementation of the control, so I can't just subclass the control and override OnRightButtonDown member function.

I probobly have to subclass a control with a virtual function for the right button, but I'm not sure if I have to have a virtual function. I need to be able to write the function at design time.

Any suggestions?