<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Сортировка]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=8992&amp;type=atom" />
	<updated>2013-12-11T18:27:43Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=8992</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=78031#p78031" />
			<content type="html"><![CDATA[<p>Пожалуйста <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Irbis]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27384</uri>
			</author>
			<updated>2013-12-11T18:27:43Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=78031#p78031</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77988#p77988" />
			<content type="html"><![CDATA[<p>Спасибо!</p>]]></content>
			<author>
				<name><![CDATA[Qweasd123]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31279</uri>
			</author>
			<updated>2013-12-10T18:12:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77988#p77988</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77985#p77985" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Gui, Add, Edit, r12 vMyEdit
Gui, Add, Button,, Удалить
Gui, Show
Return

~Enter::
sleep 10
Gui, Submit, NoHide
Sort, MyEdit, N
GuiControl,, MyEdit, % MyEdit
Send ^{End}
Return

GuiClose:
ExitApp

ButtonУдалить:
   Gui, Submit, NoHide
   MyEdit := SubStr(MyEdit, s:=InStr(MyEdit, &quot;`n&quot;)+1, StrLen(MyEdit)-s-InStr(MyEdit, &quot;`n&quot;,,0)+1)
   GuiControl,, MyEdit, % MyEdit
Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Irbis]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27384</uri>
			</author>
			<updated>2013-12-10T17:09:45Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77985#p77985</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77983#p77983" />
			<content type="html"><![CDATA[<p>С сортировкой из строк разобрался. Как теперь допустим после сортировки первое и последнее число удалить?</p>]]></content>
			<author>
				<name><![CDATA[Qweasd123]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31279</uri>
			</author>
			<updated>2013-12-10T16:03:13Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77983#p77983</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77982#p77982" />
			<content type="html"><![CDATA[<p>И как допустим сортировать данные из нескольких текстовых полей?</p>]]></content>
			<author>
				<name><![CDATA[Qweasd123]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31279</uri>
			</author>
			<updated>2013-12-10T15:48:43Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77982#p77982</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77981#p77981" />
			<content type="html"><![CDATA[<p>Разделитель - перенос строки. И мне еще нужно после сортировки 1 и последнее число обнулить. Как так сделать?</p>]]></content>
			<author>
				<name><![CDATA[Qweasd123]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31279</uri>
			</author>
			<updated>2013-12-10T15:35:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77981#p77981</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77978#p77978" />
			<content type="html"><![CDATA[<p>Видимо, сразу - это в процессе ввода, после ввода разделителя. <img src="//forum.script-coding.com/img/smilies/hmm.png" width="15" height="15" /></p><p>Разделитель - пробел</p><div class="codebox"><pre><code>Gui, Add, Edit, r12 vMyEdit
Gui, Show
Return

~Space::
sleep 10
Gui, Submit, NoHide
Sort, MyEdit, N D %A_Space%
GuiControl,, MyEdit, % MyEdit
Send ^{End}
Return

GuiClose:
ExitApp</code></pre></div><p>... Или Enter</p><div class="codebox"><pre><code>Gui, Add, Edit, r12 vMyEdit
Gui, Show
Return

~Enter::
sleep 10
Gui, Submit, NoHide
Sort, MyEdit, N
GuiControl,, MyEdit, % MyEdit
Send ^{End}
Return

GuiClose:
ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Irbis]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27384</uri>
			</author>
			<updated>2013-12-10T14:44:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77978#p77978</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77974#p77974" />
			<content type="html"><![CDATA[<p><strong>Qweasd123</strong>, а как выглядят числа, введённые в текстовое поле? Какой разделитель между ними — пробел, перенос строки или другой какой-нибудь?</p><div class="quotebox"><blockquote><p>сделать так чтобы числа введенные в поле для ввода сортировались сразу?</p></blockquote></div><p>Сразу — это как?</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2013-12-10T10:35:38Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77974#p77974</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Сортировка]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=77957#p77957" />
			<content type="html"><![CDATA[<p>Не могу справиться с задачей: нужно отсортировать в порядке возрастания числа введенные в текстовое поле. </p><p>Получается делать сортировку путем копирования чисел в текстовой файл и прочего геморроя.</p><p>Как облегчить мне жизнь, и сделать так чтобы числа введенные в поле для ввода сортировались сразу?</p>]]></content>
			<author>
				<name><![CDATA[Qweasd123]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31279</uri>
			</author>
			<updated>2013-12-09T19:28:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=77957#p77957</id>
		</entry>
</feed>
