<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Использование нескольких окон в GUI]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=16484&amp;type=atom" />
	<updated>2021-07-14T10:28:41Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=16484</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Использование нескольких окон в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=148953#p148953" />
			<content type="html"><![CDATA[<p>Так вроде даже лучше, меньше мелькает:<br /></p><div class="codebox"><pre><code>Gui, Main: New
Gui, Add, Button, w60 h60 gButt1
Gui, Show, w120 h120, Test

Gui, Child: New, +OwnerMain
Gui, Add, Edit , x101 y3 w375 h62 vEd1
Return

Butt1:
   Gui, Main: +Disabled
   Gui, Child: Show, w488 h71, Sniper Rifle
   Return

ChildGuiClose:
   Gui, Main: -Disabled
   Gui, Child: Cancel
   Return

MainGuiClose:
   ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2021-07-14T10:28:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=148953#p148953</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Использование нескольких окон в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=148952#p148952" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong><br />О, спасибо большое!</p>]]></content>
			<author>
				<name><![CDATA[~incognito]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41862</uri>
			</author>
			<updated>2021-07-14T08:59:06Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=148952#p148952</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Использование нескольких окон в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=148950#p148950" />
			<content type="html"><![CDATA[<p>Примерно так:<br /></p><div class="codebox"><pre><code>Gui, Main: New
Gui, Add, Button, w60 h60 gButt1
Gui, Show, w120 h120, Test

Gui, Child: New, +OwnerMain +hwndhChild
Gui, Add, Edit , x101 y3 w375 h62 vEd1
Return

Butt1:
   Gui, Main: +Disabled
   Gui, Child: Show, w488 h71, Sniper Rifle
   WinWaitClose, ahk_id %hChild%
   Gui, Main: -Disabled
   Gui, Main: Show
   Return

MainGuiClose:
   ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2021-07-13T20:42:39Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=148950#p148950</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Использование нескольких окон в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=148949#p148949" />
			<content type="html"><![CDATA[<p>Я нашёл параметр, но при закрытии окна 2, окно 1 не разблокировывается.<br /></p><div class="codebox"><pre><code>#SingleInstance Force
Gui, Add, Button, w60 h60 gButt1
Gui, Show, w120 h120, Test
return
Butt1:
Gui, 2:Add, Edit , x101 y3 w375 h62 vEd1
Gui, 2:Show, w488 h71, Sniper Rifle
WinSet, Disable
return
2GuiClose:
WinSet, Enable
Gui, submit
Gui, Destroy
return
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[~incognito]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41862</uri>
			</author>
			<updated>2021-07-13T18:01:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=148949#p148949</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Использование нескольких окон в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=148948#p148948" />
			<content type="html"><![CDATA[<p>Как сделать в GUI, чтобы предыдущее окно - нельзя было использовать, пока открыто следующее.<br />(Параметр или что-то подобное)<br />Примерно:<br />Открыто окно 1 и через - это окно, открыто окно 2 - пока открыто окно 2, нельзя использовать окно 1, но после закрытия окно 2 - окно 1 можно использовать.</p>]]></content>
			<author>
				<name><![CDATA[~incognito]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41862</uri>
			</author>
			<updated>2021-07-13T17:40:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=148948#p148948</id>
		</entry>
</feed>
