<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; VBS: Объединение аргументов в одну строку]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=12575&amp;type=atom" />
	<updated>2017-03-29T10:22:05Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=12575</id>
		<entry>
			<title type="html"><![CDATA[Re: VBS: Объединение аргументов в одну строку]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=114366#p114366" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>With WSH.Arguments
	For i = 0 To .Count - 1
		Pars = Pars &amp; &quot; &quot; &amp; .Item(i)
	Next
End With

MsgBox Pars</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Flasher]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27593</uri>
			</author>
			<updated>2017-03-29T10:22:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=114366#p114366</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[VBS: Объединение аргументов в одну строку]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=114365#p114365" />
			<content type="html"><![CDATA[<p>Привет, такая задача.<br />Вот у меня есть скрипт, и я его запускаю с разным количеством аргументов.</p><div class="codebox"><pre><code>
Cnt = WScript.Arguments.Count
For i = 0 To Cnt - 1
 MsgBox WScript.Arguments(i)
&#039;sss = Array(WScript.Arguments(i))
&#039;ddd = join(sss)
&#039; MsgBox ddd
Next
</code></pre></div><br /><p>Как мне объединить весь этот массив аргументов в одну строку?</p>]]></content>
			<author>
				<name><![CDATA[Parazit]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34289</uri>
			</author>
			<updated>2017-03-29T10:08:19Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=114365#p114365</id>
		</entry>
</feed>
