<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mediawiki.zeropage.org/index.php?action=history&amp;feed=atom&amp;title=ListCtrl</id>
	<title>ListCtrl - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.zeropage.org/index.php?action=history&amp;feed=atom&amp;title=ListCtrl"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.zeropage.org/index.php?title=ListCtrl&amp;action=history"/>
	<updated>2026-05-15T01:51:00Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.8</generator>
	<entry>
		<id>https://mediawiki.zeropage.org/index.php?title=ListCtrl&amp;diff=34252&amp;oldid=prev</id>
		<title>imported&gt;Unknown at 05:23, 7 February 2021</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.zeropage.org/index.php?title=ListCtrl&amp;diff=34252&amp;oldid=prev"/>
		<updated>2021-02-07T05:23:39Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Mouse Click 후 index 받아 오기 ==&lt;br /&gt;
 int ListIndex;&lt;br /&gt;
 DWORD dwPos = ::GetMessagePos(); &lt;br /&gt;
 CPoint point ((int)LOWORD(dwPos), (int)HIWORD(dwPos)); &lt;br /&gt;
 CPoint Index = point; &lt;br /&gt;
 m_ctrlZoneList.ScreenToClient(&amp;amp;amp;Index); &lt;br /&gt;
 ListIndex = m_ctrlZoneList.HitTest(Index); &lt;br /&gt;
&lt;br /&gt;
== Mouse Click 후 Item의 String 받아 오기 ==&lt;br /&gt;
 void CBlockDlg::OnItemchangedList1(NMHDR* pNMHDR, LRESULT* pResult) &lt;br /&gt;
 {&lt;br /&gt;
 	NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;&lt;br /&gt;
 	// TODO: Add your control notification handler code here&lt;br /&gt;
 	POSITION pos = m_ctrlBlockList.GetFirstSelectedItemPosition();&lt;br /&gt;
 &lt;br /&gt;
 	int index = m_ctrlBlockList.GetNextSelectedItem(pos);&lt;br /&gt;
 &lt;br /&gt;
 	char buf[64];&lt;br /&gt;
 	m_ctrlBlockList.GetItemText(index, 0, buf, 64);&lt;br /&gt;
 	AfxMessageBox(buf);&lt;br /&gt;
 	*pResult = 0;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Thread == &lt;br /&gt;
[[MFC_]]&lt;/div&gt;</summary>
		<author><name>imported&gt;Unknown</name></author>
	</entry>
</feed>