<?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=9119&amp;type=atom" />
	<updated>2014-01-17T01:26:40Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=9119</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: изменение значение конкретного контрола в конкретном gui]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79268#p79268" />
			<content type="html"><![CDATA[<p>Прочитайте справку по <a href="http://ahkscript.org/docs/commands/GuiControl.htm#Move">GuiControl</a> до конца.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2014-01-17T01:26:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79268#p79268</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: изменение значение конкретного контрола в конкретном gui]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79267#p79267" />
			<content type="html"><![CDATA[<p>А как изменить размер контрола?<br /></p><div class="codebox"><pre><code>Gui, 1:Add,Edit,vE1,123
Gui, 1:show, x100 y100 w200 h100

Gui, 2:Add,Edit, w30 vE2,456
Gui, 2:show, x100 y200 w200 h100
return

F1::
GuiControl, 2:,E2, asdfghjkl
return


F2::
GuiControl, 2:, w150 vE2, asdfghjkl
return

F3::
GuiControl, 2:, w150 E2
GuiControl, 2:,Show
return


F4::
GuiControl, 2:, Edit, w150 E2, asdfghjkl
GuiControl, 2:,Show
return

F5::
GuiControl, 2:, Edit, w150 vE2
GuiControl, 2:,Show
return</code></pre></div><p>&nbsp; F1 менят содержимое.&nbsp; Увеличить длину&nbsp; edit не смог.</p>]]></content>
			<author>
				<name><![CDATA[Foma]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31521</uri>
			</author>
			<updated>2014-01-17T00:19:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79267#p79267</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: изменение значение конкретного контрола в конкретном gui]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78937#p78937" />
			<content type="html"><![CDATA[<p>Либо так:<br /></p><div class="codebox"><pre><code>Gui, 1:Add,Edit,vE1,123
Gui, 1:show, x100 y100 w200 h100

Gui, 2:Add,Edit, vE2,456
Gui, 2:show, x100 y200 w200 h100
return

F1::
Gui, 2: Default
GuiControl,, E2, 789
return</code></pre></div><p>либо так:</p><div class="codebox"><pre><code>Gui, 1:Add,Edit,vE1,123
Gui, 1:show, x100 y100 w200 h100

Gui, 2:Add,Edit, vE2,456
Gui, 2:show, x100 y200 w200 h100
return

F1:: GuiControl, 2:, E2, 789</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2014-01-06T12:27:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78937#p78937</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: изменение значение конкретного контрола в конкретном gui]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78935#p78935" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Gui, 1:Add,Edit,vE1,123
Gui, 1:show, x100 y100 w200 h100

Gui, 2:Add,Edit, vE2,456
Gui, 2:show, x100 y200 w200 h100
return

F1::
Gui, 2: +LastFound
GuiControl, 2:, E2, 786
return



Guiclose:
ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[sergeiplugatyr]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30382</uri>
			</author>
			<updated>2014-01-06T11:30:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78935#p78935</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: изменение значение конкретного контрола в конкретном gui]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78934#p78934" />
			<content type="html"><![CDATA[<p>Не удаётся изменить значение конкретного контрола в конкретном gui. Насовал уже всего, а он хххх не реагирует ни на одно действие.<br /></p><div class="codebox"><pre><code>Gui, 1:Add,Edit,vE1,123
Gui, 1:show, x100 y100 w200 h100

Gui, 2:Add,Edit, vE2,456
Gui, 2:show, x100 y200 w200 h100
return

F1::
Gui, 2: +LastFound
GuiControl,, E2, +LastFound, 789
GuiControl,, E2, +LastFound
GuiControl,, E2, 789
GuiControl,, E2,  +Redraw
return



Guiclose:
ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Foma]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31521</uri>
			</author>
			<updated>2014-01-06T10:04:15Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78934#p78934</id>
		</entry>
</feed>
