| Re: Click events of context menu are not firing....
My context menu, called by a timer as suggested, wasn't firing either until I changed the
contextMenu1->Show(axMappointControl1,Point(clickX,clickY))
to
contextMenu1->Show(this,Point(clickX,clickY))
where this is Form1 or whatever. |