<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Перенести функцию с AHK v2 в v1]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=16834</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=16834&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Перенести функцию с AHK v2 в v1».]]></description>
		<lastBuildDate>Sun, 19 Dec 2021 19:25:48 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151309#p151309</link>
			<description><![CDATA[<p><strong>svoboden</strong>, при вашем коде у меня ничего не происходит, даже нет msgBox.<br /><strong>teadrinker</strong>, огромное спасибо, по небольшой аналогии и методом тыка, переделал еще две функции.</p><div class="codebox"><pre><code>getNumberFormatEx(Value, LocaleName := &quot;!x-sys-default-locale&quot;)
{
	if !Size := DllCall(&quot;GetNumberFormatEx&quot;, &quot;WStr&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;WStr&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0)
		throw &quot;GetNumberFormatEx failed, error &quot; . A_LastError

	VarSetCapacity(NumberStr, Size*2)
	DllCall(&quot;GetNumberFormatEx&quot;, &quot;WStr&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;WStr&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, &amp;NumberStr, &quot;Int&quot;, Size)

	return StrGet(&amp;NumberStr, &quot;UTF-16&quot;)
}
</code></pre></div><div class="codebox"><pre><code>getDurationFormatEx(Duration, Format := 0, LocaleName := &quot;!x-sys-default-locale&quot;)
{
	if !Size := DllCall(&quot;GetDurationFormatEx&quot;, &quot;WStr&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, Format ? &quot;WStr&quot; : &quot;Ptr&quot;, Format, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0)
		throw &quot;GetDurationFormatEx failed, error &quot; . A_LastError
	VarSetCapacity(DurationStr, Size*2)
	DllCall(&quot;GetDurationFormatEx&quot;, &quot;WStr&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, Format ? &quot;WStr&quot; : &quot;Ptr&quot;, Format, &quot;Ptr&quot;, &amp;DurationStr, &quot;Int&quot;, Size)

	return StrGet(&amp;DurationStr, &quot;UTF-16&quot;)
}
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sun, 19 Dec 2021 19:25:48 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151309#p151309</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151304#p151304</link>
			<description><![CDATA[<div class="codebox"><pre><code>MsgBox % GetDurationFormat(817000)                                    ; 13:37
MsgBox % GetDurationFormat(421337, &quot;hh:mm:ss.fff&quot;)                    ; 00:07:01.337
MsgBox % GetDurationFormat(2520000, &quot;mm&#039; Minutes&quot;)                    ; 42 Minutes
MsgBox % GetDurationFormat(43140000, &quot;hh&#039; Hours and &#039;mm&#039; Minutes&quot;)    ; 11 Hours and 59 Minutes

GetDurationFormat(Duration, Format := 0, Locale := 0x0400)
{
   if !Size := DllCall(&quot;GetDurationFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, Format ? &quot;WStr&quot; : &quot;Ptr&quot;, Format, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0)
      throw &quot;GetDurationFormat failed, error &quot; . A_LastError
   VarSetCapacity(DurationStr, Size*2)
   DllCall(&quot;GetDurationFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, Format ? &quot;WStr&quot; : &quot;Ptr&quot;, Format, &quot;Ptr&quot;, &amp;DurationStr, &quot;Int&quot;, Size)
   return StrGet(&amp;DurationStr, &quot;UTF-16&quot;)
}</code></pre></div><div class="codebox"><pre><code>MsgBox % GetCurrencyFormatEx(&quot;1149.99&quot;)             ; 1.149,99 €
MsgBox % GetCurrencyFormatEx(&quot;1149.99&quot;, &quot;en-US&quot;)    ; $1,149.99
MsgBox % GetCurrencyFormatEx(&quot;1149.99&quot;, &quot;en-GB&quot;)    ; £1,149.99
MsgBox % GetCurrencyFormatEx(&quot;1149.99&quot;, &quot;de-DE&quot;)    ; 1.149,99 €

GetCurrencyFormatEx(Value, LocaleName := &quot;!x-sys-default-locale&quot;)
{
   if !Size := DllCall(&quot;GetCurrencyFormatEx&quot;, &quot;WStr&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;WStr&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0)
      throw &quot;GetCurrencyFormatEx failed, error &quot; . A_LastError
   VarSetCapacity(CurrencyStr, Size*2)
   DllCall(&quot;GetCurrencyFormatEx&quot;, &quot;WStr&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;WStr&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, &amp;CurrencyStr, &quot;Int&quot;, Size)
   return StrGet(&amp;CurrencyStr, &quot;UTF-16&quot;)
}</code></pre></div><p>Вторая функция с ANSI-интерпретатором не будет отображать рубли и фунты.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 19 Dec 2021 15:19:26 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151304#p151304</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151293#p151293</link>
			<description><![CDATA[<p>А что сложно, даже я смог запустить пример. Autohotkey Unicode 32-bit:</p><div class="codebox"><pre><code>TimedDuration := 421337
         VarSetCapacity(lpDurationStr, 256) 
         DllCall(&quot;GetDurationFormat&quot;, &quot;uint&quot;, 0x400, &quot;uint&quot;, 0, &quot;ptr&quot;, 0, &quot;int64&quot;, TimedDuration*10000, &quot;wstr&quot;, &quot;h&#039;:&#039;mm&#039;:&#039;ss.fff&quot;, &quot;wstr&quot;, lpDurationStr, &quot;int&quot;, 256)
      MsgBox % lpDurationStr</code></pre></div><p>Может не слишком правильный пример, но рабочий.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Sun, 19 Dec 2021 10:40:18 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151293#p151293</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151288#p151288</link>
			<description><![CDATA[<p>Возвращается пустота:<br /></p><div class="codebox"><pre><code>GetCurrencyFormatEx(Value, LocaleName := &quot;!x-sys-default-locale&quot;)
{
	if (Size := DllCall(&quot;GetCurrencyFormatEx&quot;, &quot;Str&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0))
	{
		VarSetCapacity(CurrencyStr, Size &lt;&lt; !!A_IsUnicode)
		if (DllCall(&quot;GetCurrencyFormatEx&quot;, &quot;Str&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Str&quot;, CurrencyStr, &quot;Int&quot;, Size))
		{
			return CurrencyStr
		}
	}
	return &quot;&quot;
}

; =============

MsgBox % GetCurrencyFormatEx(1149.99)             ; 1.149,99 €
MsgBox % GetCurrencyFormatEx(1149.99, &quot;en-US&quot;)    ; $1,149.99
MsgBox % GetCurrencyFormatEx(1149.99, &quot;en-GB&quot;)    ; £1,149.99
MsgBox % GetCurrencyFormatEx(1149.99, &quot;de-DE&quot;)    ; 1.149,99 €
</code></pre></div><p>Оригинал:<br /></p><div class="codebox"><pre><code>GetCurrencyFormatEx(Value, LocaleName := &quot;!x-sys-default-locale&quot;)
{
	if (Size := DllCall(&quot;GetCurrencyFormatEx&quot;, &quot;Str&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0))
	{
		Size := VarSetStrCapacity(&amp;CurrencyStr, Size)
		if (Size := DllCall(&quot;GetCurrencyFormatEx&quot;, &quot;Str&quot;, LocaleName, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Str&quot;, CurrencyStr, &quot;Int&quot;, Size))
		{
			return CurrencyStr
		}
	}
	return &quot;&quot;
}

; ===========================================================================================================================================================================

MsgBox GetCurrencyFormatEx(1149.99)             ; 1.149,99 €    ( LANG_USER_DEFAULT | SUBLANG_DEFAULT    )    (GERMAN HERE)
MsgBox GetCurrencyFormatEx(1149.99, &quot;en-US&quot;)    ; $1,149.99     ( LANG_ENGLISH      | SUBLANG_ENGLISH_US )
MsgBox GetCurrencyFormatEx(1149.99, &quot;en-GB&quot;)    ; £1,149.99     ( LANG_ENGLISH      | SUBLANG_ENGLISH_UK )
MsgBox GetCurrencyFormatEx(1149.99, &quot;de-DE&quot;)    ; 1.149,99 €    ( LANG_GERMAN       | SUBLANG_GERMAN     )</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sun, 19 Dec 2021 03:39:09 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151288#p151288</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151287#p151287</link>
			<description><![CDATA[<p>Данный код возвращает не правильные данные:<br /></p><div class="codebox"><pre><code>GetDurationFormat(Duration, Format := &quot;&quot;, Locale := 0x0400)
{
	if (Size := DllCall(&quot;GetDurationFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, &quot;Ptr&quot;, (Format ? StrPut(Format) : 0), &quot;Ptr&quot;, 0, &quot;Int&quot;, 0))
	{
		Size := VarSetCapacity(DurationStr, Size &lt;&lt; !!A_IsUnicode)
		if (Size := DllCall(&quot;GetDurationFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, &quot;Ptr&quot;, (Format ? StrPut(Format) : 0), &quot;Str&quot;, DurationStr, &quot;Int&quot;, Size))
		{
			return DurationStr
		}
	}
	return &quot;&quot;
}

; ===========================================================================================================================================================================

MsgBox % GetDurationFormat(817000)                                    ; 13:37
MsgBox % GetDurationFormat(421337, &quot;hh:mm:ss.fff&quot;)                    ; 00:07:01.337
MsgBox % GetDurationFormat(2520000, &quot;mm&#039; Minutes&quot;)                    ; 42 Minutes
MsgBox % GetDurationFormat(43140000, &quot;hh&#039; Hours and &#039;mm&#039; Minutes&quot;)    ; 11 Hours and 59 Minutes
</code></pre></div><p>Оригинал:<br /></p><div class="codebox"><pre><code>GetDurationFormat(Duration, Format := &quot;&quot;, Locale := 0x0400)
{
	if (Size := DllCall(&quot;GetDurationFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, &quot;Ptr&quot;, (Format ? StrPtr(Format) : 0), &quot;Ptr&quot;, 0, &quot;Int&quot;, 0))
	{
		Size := VarSetStrCapacity(&amp;DurationStr, Size)
		if (Size := DllCall(&quot;GetDurationFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int64&quot;, Duration * 10000, &quot;Ptr&quot;, (Format ? StrPtr(Format) : 0), &quot;Str&quot;, DurationStr, &quot;Int&quot;, Size))
		{
			return DurationStr
		}
	}
	return &quot;&quot;
}

; ===========================================================================================================================================================================

MsgBox GetDurationFormat(817000)                                    ; 13:37
MsgBox GetDurationFormat(421337, &quot;hh:mm:ss.fff&quot;)                    ; 00:07:01.337
MsgBox GetDurationFormat(2520000, &quot;mm&#039; Minutes&quot;)                    ; 42 Minutes
MsgBox GetDurationFormat(43140000, &quot;hh&#039; Hours and &#039;mm&#039; Minutes&quot;)    ; 11 Hours and 59 Minutes</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:56:41 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151287#p151287</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151286#p151286</link>
			<description><![CDATA[<p>Да получилось, огромное спасибо.</p>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:45:07 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151286#p151286</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151284#p151284</link>
			<description><![CDATA[<p>Вместо<br /></p><div class="codebox"><pre><code>Size := VarSetCapacity(&amp;CurrencyStr, Size)</code></pre></div><p>нужно<br /></p><div class="codebox"><pre><code>VarSetCapacity(CurrencyStr, Size &lt;&lt; !!A_IsUnicode)</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:38:31 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151284#p151284</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151283#p151283</link>
			<description><![CDATA[<p>Данный код по прежнему возвращает пустые строки, хотя Size в обоих случаях равен 11.</p><div class="codebox"><pre><code>GetCurrencyFormat(Value, Locale := 0x0400)
{
	Size := DllCall(&quot;GetCurrencyFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0)

	if (Size)
	{
		Size := VarSetCapacity(&amp;CurrencyStr, Size)
		Size := DllCall(&quot;GetCurrencyFormat&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Str&quot;, CurrencyStr, &quot;Int&quot;, Size)
		if (Size)
		{
			return CurrencyStr
		}
	}
	return &quot;&quot;
}

; ========================

MsgBox, % GetCurrencyFormat(1149.99)            ; 1.149,99 €
MsgBox, % GetCurrencyFormat(1149.99, 0x0409)    ; $1,149.99
MsgBox, % GetCurrencyFormat(1149.99, 0x0809)    ; £1,149.99
MsgBox, % GetCurrencyFormat(1149.99, 0x0407)    ; 1.149,99 €
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:29:33 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151283#p151283</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151282#p151282</link>
			<description><![CDATA[<p>Да просто уберите W.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:23:12 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151282#p151282</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151281#p151281</link>
			<description><![CDATA[<p>Ваш код вернул 0. Я уже подозреваю, что дело в ANSI версии AHK. Если это так, то что нужно поменять?</p>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:21:27 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151281#p151281</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151280#p151280</link>
			<description><![CDATA[<div class="quotebox"><cite>Phoenixxx_Czar пишет:</cite><blockquote><p>Значение первого Size пустое</p></blockquote></div><p>Почему? У меня не пустое:<br /></p><div class="codebox"><pre><code>MsgBox, % DllCall(&quot;GetCurrencyFormatW&quot;, &quot;UInt&quot;, 0x400, &quot;UInt&quot;, 0, &quot;Str&quot;, &quot;100&quot;, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0)</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:19:34 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151280#p151280</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Перенести функцию с AHK v2 в v1]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151276#p151276</link>
			<description><![CDATA[<p>Нашел такую функцию для AHK v2:<br /></p><div class="codebox"><pre><code>GetCurrencyFormat(Value, Locale := 0x0400)
{
	if (Size := DllCall(&quot;GetCurrencyFormatW&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0))
	{
		Size := VarSetStrCapacity(&amp;CurrencyStr, Size)
		if (Size := DllCall(&quot;GetCurrencyFormatW&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Str&quot;, CurrencyStr, &quot;Int&quot;, Size))
		{
			return CurrencyStr
		}
	}
	return &quot;&quot;
}

; =================================

MsgBox GetCurrencyFormat(1149.99)            ; 1.149,99 €    ( LANG_USER_DEFAULT | SUBLANG_DEFAULT    )    (GERMAN HERE)
MsgBox GetCurrencyFormat(1149.99, 0x0409)    ; $1,149.99     ( LANG_ENGLISH      | SUBLANG_ENGLISH_US )
MsgBox GetCurrencyFormat(1149.99, 0x0809)    ; £1,149.99     ( LANG_ENGLISH      | SUBLANG_ENGLISH_UK )
MsgBox GetCurrencyFormat(1149.99, 0x0407)    ; 1.149,99 €    ( LANG_GERMAN       | SUBLANG_GERMAN     )</code></pre></div><p>Как ее перенести в v1? Мои познания в DllCall нулевые.<br />Значение первого Size пустое.<br /></p><div class="codebox"><pre><code>GetCurrencyFormat(Value, Locale := 0x0400)
{
	if (Size := DllCall(&quot;GetCurrencyFormatW&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Ptr&quot;, 0, &quot;Int&quot;, 0))
	{
		Size := VarSetCapacity(&amp;CurrencyStr, Size)
		if (Size := DllCall(&quot;GetCurrencyFormatW&quot;, &quot;UInt&quot;, Locale, &quot;UInt&quot;, 0, &quot;Str&quot;, Value, &quot;Ptr&quot;, 0, &quot;Str&quot;, CurrencyStr, &quot;Int&quot;, Size))
		{
			return CurrencyStr
		}
	}
	return &quot;&quot;
}

; ==================

MsgBox % GetCurrencyFormat(1149.99)            ; 1.149,99 €    ( LANG_USER_DEFAULT | SUBLANG_DEFAULT    )    (GERMAN HERE)
MsgBox % GetCurrencyFormat(1149.99, 0x0409)    ; $1,149.99     ( LANG_ENGLISH      | SUBLANG_ENGLISH_US )
MsgBox % GetCurrencyFormat(1149.99, 0x0809)    ; £1,149.99     ( LANG_ENGLISH      | SUBLANG_ENGLISH_UK )
MsgBox % GetCurrencyFormat(1149.99, 0x0407)    ; 1.149,99 €    ( LANG_GERMAN       | SUBLANG_GERMAN     )</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sun, 19 Dec 2021 02:05:12 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151276#p151276</guid>
		</item>
	</channel>
</rss>
