<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: выпадающий список в ListView]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=9151</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=9151&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: выпадающий список в ListView».]]></description>
		<lastBuildDate>Thu, 16 Jan 2014 20:21:45 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79255#p79255</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Спасибо за ответ!</p>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Thu, 16 Jan 2014 20:21:45 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79255#p79255</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79251#p79251</link>
			<description><![CDATA[<div class="codebox"><pre><code>Gui, Add, ListView, hwndhListView, ColumnTitle1|ColumnTitle2
LV_Add(&quot;&quot;, &quot;Item1&quot;, &quot;Item2&quot;), LV_Add(&quot;&quot;, &quot;Item1&quot;, &quot;Item2&quot;)
Gui, Show, y200

oCoords := GetListViewItemCoords(2, 1, hListView, 1)   ; второй ряд первая колонка
MsgBox, % &quot;Абсолютные координаты:`n`nleft = &quot; . oCoords.left . &quot;`ntop = &quot; . oCoords.top
                               . &quot;`nright = &quot; . oCoords.right . &quot;`nbottom = &quot; . oCoords.bottom
                              
oCoords := GetListViewItemCoords(2, 1, hListView)
MsgBox, % &quot;Координаты относительно верхнего левого угла контрола ListView:`n&quot;
                              . &quot;`nleft = &quot; . oCoords.left . &quot;`ntop = &quot; . oCoords.top
                              . &quot;`nright = &quot; . oCoords.right . &quot;`nbottom = &quot; . oCoords.bottom
ExitApp

GetListViewItemCoords(row, col, hListView, abs = &quot;&quot;)   ; если abs = true, координаты относительно экрана,
{                                                      ; если false — относительно контрола ListView
   VarSetCapacity(Rect, 16, 0)
   NumPut(col = 1 ? 1 : col - 1, Rect, 4, &quot;UInt&quot;)
   SendMessage, LVM_GETSUBITEMRECT := 0x1038, row - 1, &amp;Rect,, ahk_id %hListView%
   l := NumGet(Rect, &quot;UInt&quot;), t := NumGet(Rect, 4, &quot;UInt&quot;)
   r := NumGet(Rect, 8, &quot;UInt&quot;), b := NumGet(Rect, 12, &quot;UInt&quot;)
   (col = 1) ? (lprev := l, l := 0, r := lprev)
   
   if abs
   {
      WinGetPos, X, Y,,, ahk_id %hListView%
      l += X, r += X, t += Y, b += Y
   }
   
   Return {left: l, top: t, right: r, bottom: b}
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Thu, 16 Jan 2014 16:57:12 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79251#p79251</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79239#p79239</link>
			<description><![CDATA[<p>Своего.</p>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Thu, 16 Jan 2014 14:12:05 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79239#p79239</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79226#p79226</link>
			<description><![CDATA[<div class="quotebox"><cite>serzh82saratov пишет:</cite><blockquote><p><strong>teadrinker</strong><br />Вы не могли бы показать, как извлечь положение и размеры нужной ячейки в ListView?</p></blockquote></div><p>Своего приложения или чужого?</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 15 Jan 2014 21:11:04 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79226#p79226</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79218#p79218</link>
			<description><![CDATA[<div class="quotebox"><cite>Serzh пишет:</cite><blockquote><p>Необходимо сделать одно из полей ListView выпадающим списком. Другими словами встроить в существующий список DropDownList.</p></blockquote></div><p>То есть ListView принадлежит окну сторонней программы?</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Wed, 15 Jan 2014 16:47:05 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79218#p79218</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79214#p79214</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Вы не могли бы показать, как извлечь положение и размеры нужной ячейки в ListView?</p>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Wed, 15 Jan 2014 15:41:54 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79214#p79214</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79206#p79206</link>
			<description><![CDATA[<p>&quot;Сделать&quot; одно из полей ListView выпадающим списком невозможно, ListView не поддерживает такой функции. Просто сделайте своё GUI со списком поверх него.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Tue, 14 Jan 2014 00:02:23 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79206#p79206</guid>
		</item>
		<item>
			<title><![CDATA[AHK: выпадающий список в ListView]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=79205#p79205</link>
			<description><![CDATA[<p>Необходимо сделать одно из полей ListView выпадающим списком. Другими словами встроить в существующий список DropDownList.</p><p>Например как в Exel:<br /><span class="postimg"><img src="http://blogs.technet.com/blogfiles/tasush/WindowsLiveWriter/Excel_C956/image_thumb_4.png" alt="http://blogs.technet.com/blogfiles/tasush/WindowsLiveWriter/Excel_C956/image_thumb_4.png" /></span></p>]]></description>
			<author><![CDATA[null@example.com (Serzh)]]></author>
			<pubDate>Mon, 13 Jan 2014 23:16:40 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=79205#p79205</guid>
		</item>
	</channel>
</rss>
