<?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 : The Click-&#069;vent by the ReportC&#111;ntrol</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : The Click-&#069;vent by the ReportC&#111;ntrol]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 27 May 2026 17:29:41 +0000</pubDate>
  <lastBuildDate>Tue, 22 Mar 2005 09:53:00 +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=2007</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[The Click-&#069;vent by the ReportC&#111;ntrol : Thank you very much! It works...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5877&amp;title=the-clickevent-by-the-reportcontrol#5877</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=983">finn</a><br /><strong>Subject:</strong> 2007<br /><strong>Posted:</strong> 22 March 2005 at 9:53am<br /><br /><P>Thank you very much! It works very well!</P><P>Yours,</P><P>Finn! <IMG src="http://forum.codejock.com/smileys/smiley2.gif" border="0"></P>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 09:53:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5877&amp;title=the-clickevent-by-the-reportcontrol#5877</guid>
  </item> 
  <item>
   <title><![CDATA[The Click-&#069;vent by the ReportC&#111;ntrol : Take a look at the ReportControlSample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5876&amp;title=the-clickevent-by-the-reportcontrol#5876</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=280">ianp</a><br /><strong>Subject:</strong> 2007<br /><strong>Posted:</strong> 22 March 2005 at 9:43am<br /><br /><P>Take a look at the ReportControl&nbsp;Sample for a better idea of how to use the MouseDown event. Below is a modified snippet of the code from this event in frmMain.</P><P>Hope this does the trick</P><P><table width="99%"><tr><td><pre class="BBcode"><BR>Private Sub wndReportControl_MouseDown(Button As Integer, Shift As Integer, X As Long, Y As Long)<BR>Dim hitRow As ReportRow<BR><BR>If Button = vbLeftButton Then<BR>&nbsp;&nbsp;&nbsp; 'Returns a reference to the row clicked<BR>&nbsp;&nbsp;&nbsp; 'Determines which row the mouse was positioned over on mousedown.<BR>&nbsp;&nbsp;&nbsp; Set hitRow = wndReportControl.HitTest(X, Y).Row<BR>&nbsp;&nbsp;&nbsp; If Not hitRow Is Nothing Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If hitRow.GroupRow Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Debug.Print "MouseDown on GroupRow"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Debug.Print "MouseDown on Row # " &amp; hitRow.Index<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;Debug.Print&nbsp;"Value of First Item added to the Record = " &amp; hitRow.Record.Item(0).Value<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; End If<BR>End if<BR>End Sub<BR></pre></td></tr></table></P><span style="font-size:10px"><br /><br />Edited by ianp</span>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 09:43:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5876&amp;title=the-clickevent-by-the-reportcontrol#5876</guid>
  </item> 
  <item>
   <title><![CDATA[The Click-&#069;vent by the ReportC&#111;ntrol : Hello!  I tried to use the MouseDown...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5875&amp;title=the-clickevent-by-the-reportcontrol#5875</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=983">finn</a><br /><strong>Subject:</strong> 2007<br /><strong>Posted:</strong> 22 March 2005 at 8:44am<br /><br /><P>Hello! <IMG src="http://forum.codejock.com/smileys/smiley1.gif" border="0"></P><P>I tried to use the MouseDown event, but it doesn't work like I want. Now I will tell you, what I want to do:</P><P>When the user clicks with the left mouse button on a row, which isn't a GroupRow, then I want to read out the value of the first column.</P><P>I hope you can help me!</P><P>Yours,</P><P>Finn <IMG src="http://forum.codejock.com/smileys/smiley2.gif" border="0"></P>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 08:44:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5875&amp;title=the-clickevent-by-the-reportcontrol#5875</guid>
  </item> 
  <item>
   <title><![CDATA[The Click-&#069;vent by the ReportC&#111;ntrol : Thank you! Yours, Finn! ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5872&amp;title=the-clickevent-by-the-reportcontrol#5872</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=983">finn</a><br /><strong>Subject:</strong> 2007<br /><strong>Posted:</strong> 22 March 2005 at 6:11am<br /><br /><P>Thank you!</P><P>Yours,</P><P>Finn! <IMG src="http://forum.codejock.com/smileys/smiley2.gif" border="0"></P>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 06:11:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5872&amp;title=the-clickevent-by-the-reportcontrol#5872</guid>
  </item> 
  <item>
   <title><![CDATA[The Click-&#069;vent by the ReportC&#111;ntrol : use MouseDown event. ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5871&amp;title=the-clickevent-by-the-reportcontrol#5871</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 2007<br /><strong>Posted:</strong> 22 March 2005 at 6:08am<br /><br />use MouseDown event.]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 06:08:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5871&amp;title=the-clickevent-by-the-reportcontrol#5871</guid>
  </item> 
  <item>
   <title><![CDATA[The Click-&#069;vent by the ReportC&#111;ntrol : Hello!  I&amp;#039;m working with...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5858&amp;title=the-clickevent-by-the-reportcontrol#5858</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=983">finn</a><br /><strong>Subject:</strong> 2007<br /><strong>Posted:</strong> 22 March 2005 at 5:26am<br /><br /><P>Hello! <IMG src="http://forum.codejock.com/smileys/smiley1.gif" border="0"></P><P>I'm working with Visual Basic 6 Enterprise Edition and have got one question. The ReportControl has got the Events "RowDblClik" and "RowRClick". But how can I know, that the user clicked with the left mouse button on the ReportControl. I want to know that, because I ant to react, when the user clicked with the left mouse butoon on the ReportControl.</P><P>Thanks for help!</P><P>Yours,</P><P>Finn! <IMG src="http://forum.codejock.com/smileys/smiley2.gif" border="0"></P><P>PS.: Soryy for my bad English, but I'm from Germany and can't speak and write English very well.</P>]]>
   </description>
   <pubDate>Tue, 22 Mar 2005 05:26:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=2007&amp;PID=5858&amp;title=the-clickevent-by-the-reportcontrol#5858</guid>
  </item> 
 </channel>
</rss>