<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Как пользоваться Checkbox]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=9032</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=9032&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Как пользоваться Checkbox».]]></description>
		<lastBuildDate>Mon, 12 Feb 2024 13:07:40 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Как пользоваться Checkbox]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=160314#p160314</link>
			<description><![CDATA[<p><strong>1srafel</strong><br />Не стоит поднимать темы столетней давности, тем более, не имеющие отношения к вашему вопросу. Создайте свою.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 12 Feb 2024 13:07:40 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=160314#p160314</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как пользоваться Checkbox]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=160313#p160313</link>
			<description><![CDATA[<p>Как отобразить CheckBox при выборе пункта PDF из ComboBox, и скрыть его при выборе JPG?<br /></p><div class="codebox"><pre><code>Gui:
   Gui, Add, ComboBox, Uppercase xp+89 y32 w106 vExtTo, JPG||PDF

   If (ExtTo == &quot;PDF&quot;)
   { 
      Gui, Font, S10 c2C2C2C, Arial
      Gui, Add, CheckBox, x9 y86 Checked0 vOPTIMIZ, Оптимизировать PDF
   }
   Gui, Show, h176 w292, 
Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (1srafel)]]></author>
			<pubDate>Mon, 12 Feb 2024 07:56:13 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=160313#p160313</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как пользоваться Checkbox]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=78217#p78217</link>
			<description><![CDATA[<div class="codebox"><pre><code>Gui, Add, CheckBox, x12 y9 w100 h30 vClick , CheckBox
Gui, Add, Button, x150 y12 w100 h30 gGo, Клик
Gui, Show, w305 h232, Checkbox
return
Return
Go:
GuiControlGet, var, , Click
if var = 1
{
    MsgBox, 64, Info!, Галка стоит!
    Return
}
Else
{
    MsgBox, 0x10, Error!, Галка не стоит!
}
Return
GuiClose:
ExitApp</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (sergeiplugatyr)]]></author>
			<pubDate>Tue, 17 Dec 2013 11:33:34 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=78217#p78217</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как пользоваться Checkbox]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=78215#p78215</link>
			<description><![CDATA[<p>Я не понял, как задать действие при выборе того или иного случая?<br /></p><div class="codebox"><pre><code>Gui, Add, Checkbox, vShipToBillingAddress, Ship to billing address?
0ShipToBillingAddress:
MsgBox, Нет

1ShipToBillingAddress:
MsgBox, Да</code></pre></div><p>Так?</p>]]></description>
			<author><![CDATA[null@example.com (Captain_SERG)]]></author>
			<pubDate>Tue, 17 Dec 2013 11:15:41 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=78215#p78215</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как пользоваться Checkbox]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=78195#p78195</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>Если флажок установлен, то выходной переменной, ассоциированной с флажком (если таковая переменная существует), будет присвоено число 1, если снят - 0, а если элемент управления не определен/серый – число -1.</p></blockquote></div><p>В данном случае имя выходной переменной, ассоциированной с флажком: ShipToBillingAddress.</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Mon, 16 Dec 2013 13:42:29 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=78195#p78195</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Как пользоваться Checkbox]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=78180#p78180</link>
			<description><![CDATA[<p>По примеру на сайте ничего не понятно<br /></p><div class="codebox"><pre><code>Gui, Add, Checkbox, vShipToBillingAddress, Ship to billing address?</code></pre></div><p>Пожалуйста объясните как расписать действия для обоих случаев выбора</p>]]></description>
			<author><![CDATA[null@example.com (Captain_SERG)]]></author>
			<pubDate>Mon, 16 Dec 2013 10:55:17 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=78180#p78180</guid>
		</item>
	</channel>
</rss>
