View Single Post

  #7 (permalink)  
Old 05-12-2008
mhuslig mhuslig is offline
Junior Member
White Belt
 
Join Date: Apr 2006
Posts: 2
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.
Reply With Quote