<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; Как вывести несколько окон MsgBox одновременно?]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=14380&amp;type=atom" />
	<updated>2018-12-07T20:51:25Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=14380</id>
		<entry>
			<title type="html"><![CDATA[Re: Как вывести несколько окон MsgBox одновременно?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130289#p130289" />
			<content type="html"><![CDATA[<p>Вот. Только не хулиганьте.</p><div class="codebox"><pre><code>Option Explicit

Dim oWshShell, oWshProcEnv, sMsg

Set oWshShell = CreateObject(&quot;WScript.Shell&quot;)
Set oWshProcEnv = oWshShell.Environment(&quot;process&quot;)
sMsg = oWshProcEnv.Item(&quot;msg&quot;)
If sMsg &lt;&gt; &quot;&quot; Then
	MsgBox sMsg
	WScript.Quit
End If

&#039; здесь располагается основной код

ShowMsg &quot;Test1&quot;
ShowMsg &quot;Test2&quot;
ShowMsg &quot;Test3&quot;

Sub ShowMsg(sText)
	oWshProcEnv.Item(&quot;msg&quot;) = sText
	oWshShell.Run &quot;&quot;&quot;&quot; &amp; WScript.FullName &amp; &quot;&quot;&quot; &quot;&quot;&quot; &amp; WScript.ScriptFullName &amp; &quot;&quot;&quot;&quot;, , False
	oWshProcEnv.Item(&quot;msg&quot;) = &quot;&quot;
End Sub
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[omegastripes]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=29228</uri>
			</author>
			<updated>2018-12-07T20:51:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130289#p130289</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как вывести несколько окон MsgBox одновременно?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130231#p130231" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Raikoho пишет:</cite><blockquote><p>Допустим, сделать несколько окон с &quot;ошибоками&quot; подряд</p></blockquote></div><p>Чтобы пользователь «захлебнулся» в потоке сообщений, заполонивших экран?</p><p>Я же пишу — это не задача. Это выбранный Вами метод решения неизвестной нам задачи.</p>]]></content>
			<author>
				<name><![CDATA[alexii]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=1844</uri>
			</author>
			<updated>2018-12-04T23:03:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130231#p130231</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как вывести несколько окон MsgBox одновременно?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130226#p130226" />
			<content type="html"><![CDATA[<p>ну вот именно такая задача. Звучит странно, но мне очень нужно... Допустим, сделать несколько окон с &quot;ошибоками&quot; подряд <strong>alexii</strong></p>]]></content>
			<author>
				<name><![CDATA[Raikoho]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39666</uri>
			</author>
			<updated>2018-12-04T20:21:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130226#p130226</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Как вывести несколько окон MsgBox одновременно?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130220#p130220" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Raikoho пишет:</cite><blockquote><p> А нужно чтобы они (n-е количество) были на экране одновременно.</p></blockquote></div><p>Именно MessageBox — никак.</p><p>А Вам зачем? Опишите саму задачу, а не выбранный метод решения.</p>]]></content>
			<author>
				<name><![CDATA[alexii]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=1844</uri>
			</author>
			<updated>2018-12-04T17:04:19Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130220#p130220</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Как вывести несколько окон MsgBox одновременно?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=130218#p130218" />
			<content type="html"><![CDATA[<p>Пытался выводить через отдельные переменные, но все равно последующие окна появляются только когда повзаимодействовал с предыдущим. А нужно чтобы они (n-е количество) были на экране одновременно. Подскажите, пожалуйста.</p>]]></content>
			<author>
				<name><![CDATA[Raikoho]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=39666</uri>
			</author>
			<updated>2018-12-04T16:31:16Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=130218#p130218</id>
		</entry>
</feed>
