<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Двумерный массив через ComObjArray]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=5825&amp;type=atom" />
	<updated>2011-05-21T14:10:43Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=5825</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Двумерный массив через ComObjArray]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=48594#p48594" />
			<content type="html"><![CDATA[<p>Вот как полезно иногда справку почитать!</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-05-21T14:10:43Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=48594#p48594</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Двумерный массив через ComObjArray]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=48588#p48588" />
			<content type="html"><![CDATA[<p>Спасибо. Но по моему такой способ немного неудобен.<br />Нашел для себя золотую середину:<br /></p><div class="codebox"><pre><code>Array := Object()
loop 5
{
i = %A_index%
loop 5
Array[i, a_index] := a_index
}
msgbox, % Array[1, 1]</code></pre></div>]]></content>
			<author>
				<name><![CDATA[G0r]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26621</uri>
			</author>
			<updated>2011-05-21T12:49:09Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=48588#p48588</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Двумерный массив через ComObjArray]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=48585#p48585" />
			<content type="html"><![CDATA[<p>Матрица<br /> </p><div class="quotebox"><blockquote><p>1 2 3 4 5<br />1 2 3 4 5<br />1 2 3 4 5<br />1 2 3 4 5</p></blockquote></div><div class="codebox"><pre><code>Array := []
Loop 5
{
   i := A_Index
   Array[i] := []
   Loop 5
      Array[i][A_Index] := A_Index
}

MsgBox, % Array.3.4</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-05-21T11:03:59Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=48585#p48585</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Двумерный массив через ComObjArray]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=48583#p48583" />
			<content type="html"><![CDATA[<p>Желательно именно через Com.<br />Ну да ладно.<br />А как способом, указанным в теме что вы дали, создать ДВУМЕРНЫЙ массив?</p>]]></content>
			<author>
				<name><![CDATA[G0r]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26621</uri>
			</author>
			<updated>2011-05-21T09:19:26Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=48583#p48583</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Двумерный массив через ComObjArray]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=48581#p48581" />
			<content type="html"><![CDATA[<p>Если задача создать массив, то к COM обращаться не обязательно, в AHK для этого <a href="http://forum.script-coding.com/viewtopic.php?pid=48400#p48400">есть</a> встроенные возможности.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-05-21T08:46:57Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=48581#p48581</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Двумерный массив через ComObjArray]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=48576#p48576" />
			<content type="html"><![CDATA[<p>Здравствуйте.<br />Решил почитать справку к AHK_L и наткнулся на функцию ComObjArray.<br />Подскажите, как с помощью нее создать двумерный массив и как к нему обращаться?<br />Так же как к старому? (Array1_1) или по другому?</p>]]></content>
			<author>
				<name><![CDATA[G0r]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26621</uri>
			</author>
			<updated>2011-05-21T06:55:31Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=48576#p48576</id>
		</entry>
</feed>
