<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: SetParent деактивирует окно]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12910&amp;type=atom" />
	<updated>2017-08-14T01:53:15Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=12910</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SetParent деактивирует окно]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118249#p118249" />
			<content type="html"><![CDATA[<p>Спасибо, помог советом!<br />Правда в ahkspy этих стилей нет.</p><p>ап: А, там же просто Gui Show вызывается после привязки окон.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2017-08-14T01:53:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118249#p118249</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SetParent деактивирует окно]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118248#p118248" />
			<content type="html"><![CDATA[<p>Значит там дочерним окнам перед добавлением прописаны стили:<br /></p><div class="codebox"><pre><code>Gui, +HWNDhParent
Gui, Show, w800 h400
Sleep 1000
Gui, New
Gui, +HWNDhChild +0x40000000 -0x80000000  ; Add WS_CHILD, remove WS_POPUP
Gui, +Parent%hParent%
  	; DllCall(&quot;SetParent&quot;, &quot;Ptr&quot;, hChild, &quot;Ptr&quot;, hParent)
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-08-13T23:53:51Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118248#p118248</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SetParent деактивирует окно]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118247#p118247" />
			<content type="html"><![CDATA[<p>В смысле, в ahkspy как раз 2 окна добавляются в своё главное.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2017-08-13T23:52:40Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118247#p118247</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SetParent деактивирует окно]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118246#p118246" />
			<content type="html"><![CDATA[<p>Наверное это из-за того, что оно чужое - процессы разные.<br />Наверное поэтому и ahkspy не деактивирует.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-08-13T23:47:59Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118246#p118246</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SetParent деактивирует окно]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118240#p118240" />
			<content type="html"><![CDATA[<p>Например если добавить в чужое окно, то всё норм. Опять же в ахкспай не деактивирует, но как в нём смоделировать ситуацию не получается.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2017-08-13T22:38:39Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118240#p118240</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SetParent деактивирует окно]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118239#p118239" />
			<content type="html"><![CDATA[<p>Полагаю, так задумано разработчиками Виндовс.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-08-13T22:36:14Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118239#p118239</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: SetParent деактивирует окно]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=118223#p118223" />
			<content type="html"><![CDATA[<p>Почему GuiParent деактивирует родительское окно?<br /></p><div class="codebox"><pre><code>
Gui, +HWNDhParent
Gui, Show, w800 h400
Sleep 1000
Gui, New
Gui, +HWNDhChild
Gui, +Parent%hParent%
  	; DllCall(&quot;SetParent&quot;, &quot;Ptr&quot;, hChild, &quot;Ptr&quot;, hParent)
return
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2017-08-13T19:53:45Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=118223#p118223</id>
		</entry>
</feed>
