<?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 : [SOLVED] ListView - HitTest fails</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Controls : [SOLVED] ListView - HitTest fails]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 13:16:55 +0000</pubDate>
  <lastBuildDate>Thu, 15 Oct 2009 07:31:05 +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=15347</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[[SOLVED] ListView - HitTest fails : &amp;#034;coordinates are in Twips...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53886&amp;title=solved-listview-hittest-fails#53886</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2113">ijwelch</a><br /><strong>Subject:</strong> 15347<br /><strong>Posted:</strong> 15 October 2009 at 7:31am<br /><br />"coordinates are in Twips to support VB6" ROFL.<br /><br />Ok but please have this sort of secret info in the help file.<br /><br />]]>
   </description>
   <pubDate>Thu, 15 Oct 2009 07:31:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53886&amp;title=solved-listview-hittest-fails#53886</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] ListView - HitTest fails : Hi,  yes, it works same as Microsoft...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53883&amp;title=solved-listview-hittest-fails#53883</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 15347<br /><strong>Posted:</strong> 15 October 2009 at 2:36am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>yes, it works same as Microsoft ListView - coordinates are in Twips to support VB6. You coorectly converted coordinates.</DIV>]]>
   </description>
   <pubDate>Thu, 15 Oct 2009 02:36:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53883&amp;title=solved-listview-hittest-fails#53883</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] ListView - HitTest fails :   I think I have found the solution....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53809&amp;title=solved-listview-hittest-fails#53809</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4998">iamgtd</a><br /><strong>Subject:</strong> 15347<br /><strong>Posted:</strong> 13 October 2009 at 7:37am<br /><br /><DIV></DIV><DIV></DIV><DIV>I think I have found the solution. The HitTest-method works correct, if the x, y-values&nbsp;are converted.</DIV><DIV>&nbsp;</DIV><DIV><FONT size=1>private void axListView1_MouseUpEvent(object sender, AxXtremeSuiteControls._DListViewEvents_MouseUpEvent e)<BR>{<BR>&nbsp;&nbsp;&nbsp; if (e.button == 2)<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Graphics g = this.CreateGraphics();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int dpix = (int)g.DpiX;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int dpiy = (int)g.DpiY;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g.Dispose();</FONT></DIV><DIV><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XtremeSuiteControls.ListViewItem listviewitem = axListView1.HitTest(e.x * 1440 / dpix, e.y * 1440 / dpiy);</FONT></DIV><DIV><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (listviewitem != null)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.WriteLine(listviewitem.Text ");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.WriteLine("nothing");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ContextMenuStrip1.Show(axListView1, e.x, e.y);<BR>&nbsp;&nbsp;&nbsp; }<BR>}<BR></FONT></DIV>]]>
   </description>
   <pubDate>Tue, 13 Oct 2009 07:37:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53809&amp;title=solved-listview-hittest-fails#53809</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] ListView - HitTest fails :  i have nowconverted the code...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53802&amp;title=solved-listview-hittest-fails#53802</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4998">iamgtd</a><br /><strong>Subject:</strong> 15347<br /><strong>Posted:</strong> 13 October 2009 at 4:45am<br /><br /><FONT size=1><DIV><FONT size=2>i have now&nbsp;converted the code to c#. but the result is the same, the function delivers always the first item as selected.</FONT></DIV><DIV><FONT size=2></FONT>&nbsp;</DIV><DIV><FONT size=2>any ideas?</FONT></DIV><DIV><FONT size=2></FONT>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>using System;<BR>using System.Collections.Generic;<BR>using System.Linq;<BR>using System.Text;<BR>using System.Runtime.InteropServices;<BR>using AxXtremeSuiteControls;</FONT></DIV><P><FONT size=1>namespace test_contextmenustrip<BR>{<BR>&nbsp;&nbsp;&nbsp; class codejockHitTest<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVM_FIRST = 0x1000;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVM_HITTEST = (LVM_FIRST + 18);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVM_SUBITEMHITTEST = (LVM_FIRST + 57);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVHT_NOWHERE = 0x1;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVHT_ONITEMICON = 0x2;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVHT_ONITEMLABEL = 0x4;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVHT_ONITEMSTATEICON = 0x8;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; const int LVHT_ONITEM = (LVHT_ONITEMICON | LVHT_ONITEMLABEL | LVHT_ONITEMSTATEICON);</FONT></P><P><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public struct POINTAPI<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public int x;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public int y;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</FONT></P><P><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public struct LVHITTESTINFO<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public POINTAPI pt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public int flags;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public int iItem;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public int iSubItem;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</FONT></P><P><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#091;DllImport("user32.dll")&#093;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public static extern int SendMessage(<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int hWnd,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // handle to destination window<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; uint Msg,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // message<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; long wParam,&nbsp; // first message parameter<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LVHITTESTINFO lParam&nbsp;&nbsp; // second message parameter<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );</FONT></P><P><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public static XtremeSuiteControls.ListViewItem ExtremeListView_HitTest(AxXtremeSuiteControls.AxListView lv, int x, int y)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LVHITTESTINFO HTI = new LVHITTESTINFO();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HTI.pt.x = x;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HTI.pt.y = y;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HTI.flags = LVHT_ONITEM;</FONT></P><P><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SendMessage(lv.hWnd, LVM_SUBITEMHITTEST, 0, HTI);</FONT></P><P><FONT size=1>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (HTI.iItem &gt; -1)<BR>&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; return lv.ListItems&#091;HTI.iItem + 1&#093;;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&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; return null;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>}<BR></P><DIV><FONT size=2>In the form:</FONT></DIV><DIV>&nbsp;</DIV><DIV>private void axListView1_MouseDownEvent(object sender, AxXtremeSuiteControls._DListViewEvents_MouseDownEvent e)<BR>{<BR>&nbsp;&nbsp;&nbsp; if (e.button == 2)<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XtremeSuiteControls.ListViewItem listviewitem = codejockHitTest.ExtremeListView_HitTest(axListView1, e.x, e.y);</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (listviewitem != null)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.WriteLine(listviewitem.Text + " x = " + e.x + ", y = " + e.y);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.WriteLine("nothing" + " x = " + e.x + ", y = " + e.y);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ContextMenuStrip1.Show(axListView1,&nbsp; e.x, e.y);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; }<BR>}</DIV><DIV></DIV><DIV></DIV><DIV></DIV><DIV></DIV></FONT>]]>
   </description>
   <pubDate>Tue, 13 Oct 2009 04:45:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53802&amp;title=solved-listview-hittest-fails#53802</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] ListView - HitTest fails : many thanks,  is for this solution...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53800&amp;title=solved-listview-hittest-fails#53800</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4998">iamgtd</a><br /><strong>Subject:</strong> 15347<br /><strong>Posted:</strong> 13 October 2009 at 3:53am<br /><br />many thanks,<DIV>&nbsp;</DIV><DIV>is for this solution a code for C# available?</DIV>]]>
   </description>
   <pubDate>Tue, 13 Oct 2009 03:53:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53800&amp;title=solved-listview-hittest-fails#53800</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] ListView - HitTest fails : See https://forum.codejock.com...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53780&amp;title=solved-listview-hittest-fails#53780</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2113">ijwelch</a><br /><strong>Subject:</strong> 15347<br /><strong>Posted:</strong> 12 October 2009 at 12:35pm<br /><br />See <a href="https://forum.codejock.com/forum_posts.asp?TID=15163&KW=" target="_blank">https://forum.codejock.com/forum_posts.asp?TID=15163&KW=</a><br /><br />for fix.<br /><br />Can CJ please deal with this?]]>
   </description>
   <pubDate>Mon, 12 Oct 2009 12:35:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53780&amp;title=solved-listview-hittest-fails#53780</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] ListView - HitTest fails : The following method delivers...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53778&amp;title=solved-listview-hittest-fails#53778</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4998">iamgtd</a><br /><strong>Subject:</strong> 15347<br /><strong>Posted:</strong> 12 October 2009 at 11:15am<br /><br /><DIV>The following method delivers wrong results for the selected item in a listview. </DIV><DIV>&nbsp;</DIV><DIV>Is it necessary to convert the mouse event values for x, y?</DIV><DIV>&nbsp;</DIV><DIV><FONT size=1>private void axListView1_MouseDownEvent(object sender, AxXtremeSuiteControls._DListViewEvents_MouseDownEvent e)<BR>{<BR>&nbsp;&nbsp;&nbsp; if (e.button == 2)<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XtremeSuiteControls.ListViewItem listviewitem = axListView1.HitTest(e.x, e.y);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (listviewitem != null)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.WriteLine(listviewitem.Text + " x = " + e.x + ", y = " + e.y);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.WriteLine("nothing" + " x = " + e.x + ", y = " + e.y);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp; }<BR>}<BR></FONT></DIV>]]>
   </description>
   <pubDate>Mon, 12 Oct 2009 11:15:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15347&amp;PID=53778&amp;title=solved-listview-hittest-fails#53778</guid>
  </item> 
 </channel>
</rss>