<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : implementing right click event</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Property Grid : implementing right click event]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 05 Apr 2026 20:05:44 +0000</pubDate>
  <lastBuildDate>Sat, 07 Jun 2008 08:50:36 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=10950</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[implementing right click event : Hi,  Here&amp;#039;s a VB6.0 sample:  Private...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36405&amp;title=implementing-right-click-event#36405</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 10950<br /><strong>Posted:</strong> 07 June 2008 at 8:50am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Here's a VB6.0 sample:</DIV><DIV>&nbsp;</DIV><DIV>Private Sub wndPropertyGridFiles_RClick(ByVal <FONT color=#006600><strong>Item</strong> </FONT>As XtremePropertyGrid.IPropertyGridItem)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>Dim <FONT color=#0000ff><strong>Popup</strong> </FONT>As CommandBar</DIV><DIV>Dim <FONT color=#996600><strong>ControlsView</strong> </FONT>As CommandBarPopup</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set <FONT color=#0000ff><strong>Popup</strong> </FONT>= CommandBars.Add("Popup", xtpBarPopup)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With <strong><FONT color=#0000ff>Popup</FONT></strong>.Controls<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_1, <FONT color=#006600><strong>Item</strong></FONT>.Caption, -1, True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Add xtpControlButton, ID_2, <FONT color=#006600><strong>Item</strong></FONT>.Value, -1, True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set <FONT color=#996600><strong>ControlsView</strong> </FONT>= .Add(xtpControlButtonPopup, ID_3, "View")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#996600><strong>ControlsView</strong></FONT>.BeginGroup = True<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong><FONT color=#996600>ControlsView</FONT></strong>.CommandBar.Controls.Add xtpControlButton, ID_4, "Remove"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong><FONT color=#996600>ControlsView</FONT></strong>.CommandBar.Controls.Add xtpControlButton, ID_5, "Edit"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong><FONT color=#996600>ControlsView</FONT></strong>.CommandBar.Controls.Add xtpControlButton, ID_6, "...."<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End With<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong><FONT color=#0000ff>Popup</FONT></strong>.ShowPopup<BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>This is the PopupMenu in code like in the image, but with VB6.0</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Sat, 07 Jun 2008 08:50:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36405&amp;title=implementing-right-click-event#36405</guid>
  </item> 
  <item>
   <title><![CDATA[implementing right click event : Yes ! Exactly !But I am using...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36404&amp;title=implementing-right-click-event#36404</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3858">BoboP</a><br /><strong>Subject:</strong> 10950<br /><strong>Posted:</strong> 07 June 2008 at 8:08am<br /><br />Yes ! Exactly !<br>But I am using code jock 11.2.2 ocx property grid in c#<br>Is it possible . and if yes could&nbsp; you suggest&nbsp; some way for doing it <br><br>Thanks ,<br><br><br><br>]]>
   </description>
   <pubDate>Sat, 07 Jun 2008 08:08:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36404&amp;title=implementing-right-click-event#36404</guid>
  </item> 
  <item>
   <title><![CDATA[implementing right click event : Hi,  Do you mean a popupmenu...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36403&amp;title=implementing-right-click-event#36403</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 10950<br /><strong>Posted:</strong> 07 June 2008 at 6:07am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Do you mean a popupmenu for a PropertyGridItem? Like this:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20080607_060624_PopupProp.JPG" border="0"></DIV>]]>
   </description>
   <pubDate>Sat, 07 Jun 2008 06:07:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36403&amp;title=implementing-right-click-event#36403</guid>
  </item> 
  <item>
   <title><![CDATA[implementing right click event :    Hi !I need to give options...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36397&amp;title=implementing-right-click-event#36397</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3858">BoboP</a><br /><strong>Subject:</strong> 10950<br /><strong>Posted:</strong> 07 June 2008 at 4:16am<br /><br />Hi !<br><br>I need to give options to user for deletion or modification when he right clicks an item of propertygrid.<br><br>Now on right click I am getting item name and its value..I can remove it as well. But I wanted user to know about this by giving option same way we get whenever we right click anywhere . presenting context menus to user.<br><br>can anyone help in this ,. <img src="http://forum.codejock.com/smileys/smiley19.gif" border="0" align="absmiddle"> its is pretty urgent <br>Thanks <br>Bobo<br>]]>
   </description>
   <pubDate>Sat, 07 Jun 2008 04:16:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10950&amp;PID=36397&amp;title=implementing-right-click-event#36397</guid>
  </item> 
 </channel>
</rss>