<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Форум QUIK [тема: Сообщение об ошибке в trans2quik]</title>
		<link>http://forum.quik.ru</link>
		<description>Новое в теме Сообщение об ошибке в trans2quik форума  на сайте Форум QUIK [forum.quik.ru]</description>
		<language>ru</language>
		<docs>http://backend.userland.com/rss2</docs>
		<pubDate>Sun, 19 Apr 2026 09:35:51 +0300</pubDate>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message72077/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			<br />====quote====<br /><a class="blog-p-user-name" id="bp_300DW0Lc" href="/user/15542/" bx-tooltip-user-id="15542">Anton Belonogov</a> написал:<br /><noindex><a href="/user/1158/" target="_blank" rel="nofollow">Михаил Филимонов</a></noindex>, &nbsp;добрый день.<br /><br />Уточните также версию Trans2QUIK.<br /><br />В ответ на какую транзакцию приходят такие сообщения?<br />Есть возможность предоставить фрагмент кода с описанием функции pfTransReplyCB?<br />=============<br />//--- Transaction callback ---<br />procedure pfTransReplyCB;<br />var<br /> &nbsp;i: integer;<br /> &nbsp;Child: TMDIChild;<br />begin<br /> &nbsp;for i:= 0 to MainForm.MDIChildCount - 1 do<br /> &nbsp;begin<br /> &nbsp; &nbsp;Child:= TMDIChild(MainForm.MDIChildren&#91;i&#93;);<br /> &nbsp; &nbsp;if(Child &lt;&gt; nil) then<br /> &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp;if(dwTransId = Child.Expert.TransID) then<br /> &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp;if(nTransactionResult = TRANS2QUIK_SUCCESS) then<br /> &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(nOrderNum &gt; 0) then Child.Expert.FOrder:= nOrderNum else &nbsp;//Get order done<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTrRes:= nTransactionResult;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FExCode:= nTransactionExtendedErrorCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTCode:= nTransactionReplyCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FRepMess:= lpcstrTransactionReplyMessage;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FStopTrading:= true;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.Expert.FTransBusy:= false; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//Stop trading<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FErrorEvent.SetEvent;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br /> &nbsp; &nbsp; &nbsp; &nbsp;end else<br /> &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTrRes:= nTransactionResult;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FExCode:= nTransactionExtendedErrorCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTCode:= nTransactionReplyCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FRepMess:= lpcstrTransactionReplyMessage;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FStopTrading:= true;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.Expert.FTransBusy:= false; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//Stop trading<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FErrorEvent.SetEvent;<br /> &nbsp; &nbsp; &nbsp; &nbsp;end;<br /> &nbsp; &nbsp; &nbsp; &nbsp;break;<br /> &nbsp; &nbsp; &nbsp;end else<br />//--- Enter order ---<br /> &nbsp; &nbsp; &nbsp;if(dwTransId = Child.Expert.EnterOrder.TransId) then<br /> &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp;if(nTransactionResult = TRANS2QUIK_SUCCESS) then<br /> &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(nOrderNum &gt; 0) then<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FEnterOrder.Order:= nOrderNum;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br /> &nbsp; &nbsp; &nbsp; &nbsp;end else<br /> &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FEnterOrder.isBusy:= false;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTrRes:= nTransactionResult;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FExCode:= nTransactionExtendedErrorCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTCode:= nTransactionReplyCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FRepMess:= lpcstrTransactionReplyMessage;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FStopTrading:= true;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.Expert.FTransBusy:= false; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//Stop trading<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FErrorEvent.SetEvent;<br /> &nbsp; &nbsp; &nbsp; &nbsp;end;<br /> &nbsp; &nbsp; &nbsp; &nbsp;break;<br /> &nbsp; &nbsp; &nbsp;end else<br />//--- Exit order ---<br /> &nbsp; &nbsp; &nbsp;if(dwTransId = Child.Expert.ExitOrder.TransId) then<br /> &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp;if(nTransactionResult = TRANS2QUIK_SUCCESS) then<br /> &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(nOrderNum &gt; 0) then<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FExitOrder.Order:= nOrderNum;<br /> &nbsp; &nbsp; &nbsp; &nbsp;end else<br /> &nbsp; &nbsp; &nbsp; &nbsp;begin<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FExitOrder.isBusy:= false;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTrRes:= nTransactionResult;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FExCode:= nTransactionExtendedErrorCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FTCode:= nTransactionReplyCode;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FRepMess:= lpcstrTransactionReplyMessage;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FStopTrading:= true;<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.Expert.FTransBusy:= false; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//Stop trading<br /> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Child.FExpert.FErrorEvent.SetEvent;<br /> &nbsp; &nbsp; &nbsp; &nbsp;end;<br /> &nbsp; &nbsp; &nbsp; &nbsp;break;<br /> &nbsp; &nbsp; &nbsp;end;<br /> &nbsp; &nbsp;end;<br /> &nbsp;end;<br />end;<br /><br />Версия Trans2quik.dll = 1.5.1.0 <br />
			<i>24.09.2023 21:44:39, Михаил Филимонов.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message72077/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message72077/topic7725/</guid>
			<pubDate>Sun, 24 Sep 2023 21:44:39 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message72031/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			<a class="blog-p-user-name" id="bp_j1BL96H0" href="/user/1158/" bx-tooltip-user-id="1158">Михаил Филимонов</a>, &nbsp;добрый день.<br /><br />Уточните также версию Trans2QUIK.<br /><br />В ответ на какую транзакцию приходят такие сообщения?<br />Есть возможность предоставить фрагмент кода с описанием функции pfTransReplyCB? <br />
			<i>21.09.2023 06:56:06, Anton Belonogov.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message72031/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message72031/topic7725/</guid>
			<pubDate>Thu, 21 Sep 2023 06:56:06 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message72017/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			<br />====quote====<br /><a class="blog-p-user-name" id="bp_9zXrGAEl" href="/user/15542/" bx-tooltip-user-id="15542">Anton Belonogov</a> написал:<br /><noindex><a href="/user/1158/" target="_blank" rel="nofollow">Михаил Филимонов</a></noindex>, &nbsp;добрый день.<br /><br />Речь идет о значении lpstrTransactionReplyMessage, верно?<br /><br />Какие версии Trans2QUIK и Рабочего места QUIK используются?<br />=============<br />Добрый вечер!<br />10.2.3.7 и 10.3.3.7 <br />
			<i>20.09.2023 18:42:07, Михаил Филимонов.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message72017/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message72017/topic7725/</guid>
			<pubDate>Wed, 20 Sep 2023 18:42:07 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message71996/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			<a class="blog-p-user-name" id="bp_6gtjrXN3" href="/user/1158/" bx-tooltip-user-id="1158">Михаил Филимонов</a>, &nbsp;добрый день.<br /><br />Речь идет о значении lpstrTransactionReplyMessage, верно?<br /><br />Какие версии Trans2QUIK и Рабочего места QUIK используются? <br />
			<i>20.09.2023 05:46:47, Anton Belonogov.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message71996/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message71996/topic7725/</guid>
			<pubDate>Wed, 20 Sep 2023 05:46:47 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message71979/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			<br />====quote====<br /><a class="blog-p-user-name" id="bp_tWtljYor" href="/user/15542/" bx-tooltip-user-id="15542">Anton Belonogov</a> написал:<br /><noindex><a href="/user/1158/" target="_blank" rel="nofollow">Михаил Филимонов</a></noindex>, &nbsp;добрый день.<br /><br />Какая функция возвращает эти значения?<br />=============<br />Добрый день!<br />pfTransReplyCB <br />
			<i>19.09.2023 00:10:56, Михаил Филимонов.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message71979/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message71979/topic7725/</guid>
			<pubDate>Tue, 19 Sep 2023 00:10:56 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message71827/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			<a class="blog-p-user-name" id="bp_nUw1KfdA" href="/user/1158/" bx-tooltip-user-id="1158">Михаил Филимонов</a>, &nbsp;добрый день.<br /><br />Какая функция возвращает эти значения? <br />
			<i>05.09.2023 08:20:52, Anton Belonogov.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message71827/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message71827/topic7725/</guid>
			<pubDate>Tue, 05 Sep 2023 08:20:52 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message71787/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			30.08.2023 21:32:21.053 --&gt; Ошибка: Рє&#91;/cut&#93;<br />30.08.2023 21:32:36.092 --&gt; Ошибка: Рє&#91;/cut&#93;<br />30.08.2023 21:32:51.136 --&gt; Ошибка: Application error: Can&#39;t resolve host name q1.open-broker.ru<br />30.08.2023 21:33:28.143 --&gt; Ошибка: Рє&#91;/cut&#93;<br /><br />Поддержка, может быть ответите что это за каракули? <br />
			<i>31.08.2023 23:35:33, Михаил Филимонов.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message71787/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message71787/topic7725/</guid>
			<pubDate>Thu, 31 Aug 2023 23:35:33 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message66672/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			ЂыЂ <br />
			<i>09.11.2022 17:21:39, Михаил Филимонов.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message66672/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message66672/topic7725/</guid>
			<pubDate>Wed, 09 Nov 2022 17:21:39 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
		<item>
			<title>Сообщение об ошибке в trans2quik</title>
			<description><![CDATA[<b><a href="http://forum.quik.ru/messages/forum12/message66671/topic7725/">Сообщение об ошибке в trans2quik</a></b> в форуме <a href="http://forum.quik.ru/forum12/">Динамический импорт транзакций</a>. <br />
			Добрый день!<br /><br />На отмену отложенного ордера &nbsp;в lpcstrTransactionReplyMessage пришло следующее сообщение:<br />09.11.2022 17:08:26.901 --&gt; Error: <span class="bx-font" style="color:#ed008c">ЂыЂ&#91;<br /></span><span class="bx-font" style="color:#ed008c"><br /></span>ЂыЂ&#93; - переведите, пожалуйста <br />
			<i>09.11.2022 17:20:52, Михаил Филимонов.</i>]]></description>
			<link>http://forum.quik.ru/messages/forum12/message66671/topic7725/</link>
			<guid>http://forum.quik.ru/messages/forum12/message66671/topic7725/</guid>
			<pubDate>Wed, 09 Nov 2022 17:20:52 +0300</pubDate>
			<category>Динамический импорт транзакций</category>
		</item>
	</channel>
</rss>
