<?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 : Bug in 15.0.1 Right Mouse Click?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Bug in 15.0.1 Right Mouse Click?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 02:03:50 +0000</pubDate>
  <lastBuildDate>Tue, 15 Feb 2011 11:27:49 +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=17876</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[Bug in 15.0.1 Right Mouse Click? : Hi, Don&amp;#039;t know what you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62664&amp;title=bug-in-15-0-1-right-mouse-click#62664</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 17876<br /><strong>Posted:</strong> 15 February 2011 at 11:27am<br /><br /><P>Hi,</P><P>Don't know what you really want but if you only want the row to be selected, I would do this:</P><DIV>&nbsp;</DIV><DIV>Private Sub wndReportControl_RowRClick(ByVal Row As XtremeReportControl.IReportRow, ByVal Item As XtremeReportControl.IReportRecordItem)<BR>&nbsp;&nbsp;&nbsp; <strong>Row.Selected = True<BR></strong>End Sub</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>I think right clicking row never selected the row by default, that's why CJ 'invented' this event <img src="http://forum.codejock.com/smileys/smiley36.gif" height="17" width="17" border="0" alt="LOL" title="LOL" />&nbsp;I have also few contextmenus that popup with right button and had to select the row by code. I'm not 100% sure but you can always ask support, right?</DIV><DIV>&nbsp;</DIV><DIV>Good luck</DIV>]]>
   </description>
   <pubDate>Tue, 15 Feb 2011 11:27:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62664&amp;title=bug-in-15-0-1-right-mouse-click#62664</guid>
  </item> 
  <item>
   <title><![CDATA[Bug in 15.0.1 Right Mouse Click? : I use the following code to solve...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62646&amp;title=bug-in-15-0-1-right-mouse-click#62646</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 17876<br /><strong>Posted:</strong> 15 February 2011 at 6:20am<br /><br />I use the following code to solve this problem:<div><br></div><div><br></div><div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Private Sub repCont1_MouseUp(Button As Integer, Shift As Integer, X As Long, Y As Long)</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono"><br></font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Dim HiRow As XtremeReportControl.ReportRow</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Dim HiCol As XtremeReportControl.ReportColumn</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Dim HiItm As XtremeReportControl.ReportRecordItem</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Dim HiTes As XtremeReportControl.ReportHitTestInfo</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Dim RpCo1 As XtremeReportControl.ReportControl</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Dim RpRws As XtremeReportControl.ReportRows</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono"><br></font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set RpCo1 = Me.repCont1</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set RpRws = RpCo1.Rows</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set HiTes = RpCo1.HitTest(X, Y)</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set HiRow = HiTes.Row</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set HiItm = HiTes.Item</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set HiCol = HiTes.Column</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono"><br></font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Select Case HiTes.ht</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Case xtpHitTestGroupBox:</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Case xtpHitTestHeader:</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Case xtpHitTestReportArea:</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;If Button = vbRightButton Then</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;For Each RpRow In RpRws</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If RpRow.Selected = True Then</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;RpRow.Selected = False</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;End If</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Next RpRow</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<b>HiRow.Selected = True</b></font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;End If</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Case xtpHitTestUnknown:</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">End Select</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono"><br></font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set RpRws = Nothing</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">Set RpCo1 = Nothing</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">&nbsp;&nbsp; &nbsp;</font></div><div><font ="Apple-style-span" face="'Courier New', Courier, mono">End Sub</font></div></div><div><br></div>]]>
   </description>
   <pubDate>Tue, 15 Feb 2011 06:20:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62646&amp;title=bug-in-15-0-1-right-mouse-click#62646</guid>
  </item> 
  <item>
   <title><![CDATA[Bug in 15.0.1 Right Mouse Click? : True or False takes no effect...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62630&amp;title=bug-in-15-0-1-right-mouse-click#62630</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 17876<br /><strong>Posted:</strong> 15 February 2011 at 1:43am<br /><br />True or False takes no effect for this problem.<div><br></div>]]>
   </description>
   <pubDate>Tue, 15 Feb 2011 01:43:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62630&amp;title=bug-in-15-0-1-right-mouse-click#62630</guid>
  </item> 
  <item>
   <title><![CDATA[Bug in 15.0.1 Right Mouse Click? : Do you have this?wndReportControl.AllowSelectionCheck...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62619&amp;title=bug-in-15-0-1-right-mouse-click#62619</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 17876<br /><strong>Posted:</strong> 14 February 2011 at 1:15pm<br /><br />Do you have this?<br>wndReportControl.AllowSelectionCheck = True<br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 13:15:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62619&amp;title=bug-in-15-0-1-right-mouse-click#62619</guid>
  </item> 
  <item>
   <title><![CDATA[Bug in 15.0.1 Right Mouse Click? :  In version 15.0.1 right mouase...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62613&amp;title=bug-in-15-0-1-right-mouse-click#62613</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 17876<br /><strong>Posted:</strong> 14 February 2011 at 11:48am<br /><br />In version 15.0.1 right mouase click doesn't mark the entry anymore. Is it a bug or a feature?]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 11:48:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17876&amp;PID=62613&amp;title=bug-in-15-0-1-right-mouse-click#62613</guid>
  </item> 
 </channel>
</rss>