<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=14263&amp;type=atom" />
	<updated>2018-10-23T16:59:22Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=14263</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129399#p129399" />
			<content type="html"><![CDATA[<p>Ясно.<br />Спасибо за ответы.</p>]]></content>
			<author>
				<name><![CDATA[Snegovik2]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39559</uri>
			</author>
			<updated>2018-10-23T16:59:22Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129399#p129399</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129388#p129388" />
			<content type="html"><![CDATA[<p>Off:: Мне лень. <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Alectric]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26027</uri>
			</author>
			<updated>2018-10-23T14:16:46Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129388#p129388</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129387#p129387" />
			<content type="html"><![CDATA[<p><strong>Alectric</strong>, неееет! Только не так. Есть же события.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2018-10-23T14:14:56Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129387#p129387</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129385#p129385" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>ComObjError(false)
FileSelectFile, Path
if ErrorLevel
  exitapp
Xl := ComObjCreate(&quot;Excel.Application&quot;)
Xl.Workbooks.Open(Path)
Xl.Visible := True

oldvar:=var:=Xl.Range(&quot;A1&quot;).Value
loop
{
  var:=Xl.Range(&quot;A1&quot;).Value
  if (oldvar!=var and var!=&quot;&quot;)
  {
    msgbox,% var
  }
  oldvar:=var
}
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Alectric]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26027</uri>
			</author>
			<updated>2018-10-23T14:03:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129385#p129385</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129383#p129383" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Snegovik2 пишет:</cite><blockquote><p>Malcev это вы имеете ввиду, что событиями в excell api на msdn - можно управлять через autohotkey ?</p></blockquote></div><p>Да.<br />И если вы бы действительно внимательно всё прочитали по ссылке <strong>Alectric</strong>, то попали бы на тему на оф.форуме и почитав внимательно там получили бы готовый код.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2018-10-23T13:50:17Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129383#p129383</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129377#p129377" />
			<content type="html"><![CDATA[<p><strong>Alectric</strong> , прошел по указанной ссылке.<br />Все внимательно прочитал.</p><p>Информации по своему вопросу - не нашел.<br />Пишут что сперва надо создать хендл.<br /></p><div class="codebox"><pre><code>
Xl := ComObjCreate(&quot;Excel.Application&quot;) ;создается handle для нового приложения
Xl := ComObjActive(&quot;Excel.Application&quot;) ;создается handle к текущему активному листу exel
</code></pre></div><p>Ну хэндл я создал, а дальше что делать ?</p><p>Как заставить скрипт - выдать сообщение или произвести какое-то действие - при изменении значения ячейки B5 - c 2 на 3 ?</p>]]></content>
			<author>
				<name><![CDATA[Snegovik2]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39559</uri>
			</author>
			<updated>2018-10-23T10:47:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129377#p129377</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129376#p129376" />
			<content type="html"><![CDATA[<p>А чего на ahk? Там же есть встроенный язык в Excel.</p>]]></content>
			<author>
				<name><![CDATA[svoboden]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34280</uri>
			</author>
			<updated>2018-10-23T08:58:49Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129376#p129376</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129371#p129371" />
			<content type="html"><![CDATA[<p><a href="http://forum.script-coding.com/viewtopic.php?id=7490">http://forum.script-coding.com/viewtopic.php?id=7490</a></p>]]></content>
			<author>
				<name><![CDATA[Alectric]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26027</uri>
			</author>
			<updated>2018-10-23T02:39:24Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129371#p129371</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129370#p129370" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong> это вы имеете ввиду, что событиями в excell api на msdn - можно управлять через autohotkey ?</p>]]></content>
			<author>
				<name><![CDATA[Snegovik2]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39559</uri>
			</author>
			<updated>2018-10-23T00:33:49Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129370#p129370</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129356#p129356" />
			<content type="html"><![CDATA[<p>Читайте про события в excell api на msdn.<br />Подключайтесь к событию через ComObjConnect.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2018-10-22T14:13:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129356#p129356</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Реакция ahk на смену значения в конкретной ячейке Excel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=129320#p129320" />
			<content type="html"><![CDATA[<p>Добрый вечер, уважаемые специалисты по ahk.<br />Помогите решить проблему.</p><p>На компьютере открыт файл Книга2.xlsb<br />Подскажите как при помощи ahk - запустить файл С:\1\7.txt при изменении значения в ячейке B5 (Лист2) ?</p><p>(Если в ячейке B5 (Лист2) - значение изменяется на какое-то другое, то запускается файл С:\1\7.txt )</p>]]></content>
			<author>
				<name><![CDATA[Snegovik2]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39559</uri>
			</author>
			<updated>2018-10-19T19:49:42Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=129320#p129320</id>
		</entry>
</feed>
