<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Две переменные из ControlSetText в ComboBox]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=9047&amp;type=atom" />
	<updated>2013-12-19T16:08:36Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=9047</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78272#p78272" />
			<content type="html"><![CDATA[<p>Благодарю, <strong>teadrinker</strong>!&nbsp; Как всегда - вне конкуренции! <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p><p>Это то, что надо!</p><p>Еще раз БОЛЬШУЩЕЕ БЛАГОДАРЮ!</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2013-12-19T16:08:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78272#p78272</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78267#p78267" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Gui, Add, ComboBox, vColorChoice hwndhCbx, Red||Green|Blue|Black|White
Gui, Show

var1 := &quot;Grey&quot;
var2 := &quot;Gold&quot;

GuiControl,, ColorChoice, % var1 &quot;|&quot; var2
return
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2013-12-19T15:48:53Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78267#p78267</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78265#p78265" />
			<content type="html"><![CDATA[<p>Это я знаю. Вопрос в том, чтобы обойтись без кнопок, по принципу ControlSetText ....</p><p>Переменные не статичные. ... Не знаю, как объяснить ....</p><p>... Полученные данные из переменных изменяют содержимое ComboBox без нажатия каких-либо кнопок по такой схеме:</p><div class="codebox"><pre><code>Gui, Add, ComboBox, , Any Text||%variable_1%|%variable_2%</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2013-12-19T15:32:12Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78265#p78265</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78264#p78264" />
			<content type="html"><![CDATA[<p>Вот пример, как добавить нужный пункт вручную. Также можно взять название пункта из переменной.<br /></p><div class="codebox"><pre><code>Gui, Add, ComboBox, vColorChoice, Red|Green|Blue|Black|White
Gui, Add, Button, gAdd, Добавить
GUI, Show

Add:
GUI, Submit, NoHide
GUIControl, , ColorChoice, %ColorChoice%
Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2013-12-19T15:29:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78264#p78264</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78263#p78263" />
			<content type="html"><![CDATA[<p>Потому и спросил: &quot;... Или это невозможно таким методом?&quot;</p><p>Вопрос - КАК сделать???</p><p>... в смысле, по принципу ControlSetText</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2013-12-19T15:23:28Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78263#p78263</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78261#p78261" />
			<content type="html"><![CDATA[<p>Вот. Я и думаю, при чём же здесь ControlSetText?</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2013-12-19T15:21:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78261#p78261</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78260#p78260" />
			<content type="html"><![CDATA[<p>.... собсна, а что делает ControlSetText? ... Нужно загнать из него две переменные в ComboBox с последующей возможностью выбора данных, полученных от переменных .... Ничего сверхестественного.</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2013-12-19T15:18:17Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78260#p78260</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78259#p78259" />
			<content type="html"><![CDATA[<p>Объясните толком, чего Вы хотите добиться.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2013-12-19T15:14:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78259#p78259</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Две переменные из ControlSetText в ComboBox]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78258#p78258" />
			<content type="html"><![CDATA[<p>Добрый вечер ВСЕМ!</p><p>Возник традиционный вопрос &quot;КАК сделать ... ???&quot; и нигде не нашел ответа. Подскажите пожалуйста!</p><div class="codebox"><pre><code>ControlSetText, ComboBox1, %variable_1%

Gui, Add, ComboBox, , Any Text||</code></pre></div><p>Как дабавить в ComboBox две переменные из ControlSetText, чтобы было как-то так:</p><div class="codebox"><pre><code>Gui, Add, ComboBox, , Any Text||%variable_1%|%variable_2%</code></pre></div><p>... Или это невозможно таким методом?</p><p>Заранее блогодарю за помощь!</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2013-12-19T15:05:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78258#p78258</id>
		</entry>
</feed>
