<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Mehrere Fenster öffnen]]></title><description><![CDATA[<p>jo i hab da ein problem, beim öffnen von mehreren internet explorer fenstern. ich will das der mehrere IE fenster öffnet mit verschiedenen adressen aber der öffnet nur ein fenster und danach jede einzelne seite in den einen fenster, was ich ja nicht will. das hab ich bis jetzt gemacht aba so funkts irgndwie nicht:</p>
<pre><code class="language-cpp">void CHeftigDlg::OnStart() 
{
	// TODO: Code für die Behandlungsroutine der Steuerelement-Benachrichtigung hier einfügen
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.very.de&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.kirre.de.vu&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.weebls-stuff.com/data/toons/scampi.swf&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.badgerbadgerbadger.com&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.hamster.at&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://dev2.weebls-stuff.com/kenya3.swf&quot;, NULL, NULL, SW_SHOWNORMAL);
}
</code></pre>
<p>thx schon amal für die hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/64109/mehrere-fenster-öffnen</link><generator>RSS for Node</generator><lastBuildDate>Thu, 04 Jun 2026 18:17:12 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/64109.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 07 Feb 2004 23:36:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Mehrere Fenster öffnen on Sat, 07 Feb 2004 23:36:09 GMT]]></title><description><![CDATA[<p>jo i hab da ein problem, beim öffnen von mehreren internet explorer fenstern. ich will das der mehrere IE fenster öffnet mit verschiedenen adressen aber der öffnet nur ein fenster und danach jede einzelne seite in den einen fenster, was ich ja nicht will. das hab ich bis jetzt gemacht aba so funkts irgndwie nicht:</p>
<pre><code class="language-cpp">void CHeftigDlg::OnStart() 
{
	// TODO: Code für die Behandlungsroutine der Steuerelement-Benachrichtigung hier einfügen
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.very.de&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.kirre.de.vu&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.weebls-stuff.com/data/toons/scampi.swf&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.badgerbadgerbadger.com&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://www.hamster.at&quot;, NULL, NULL, SW_SHOWNORMAL);
	ShellExecute(m_hWnd, &quot;open&quot;, &quot;http://dev2.weebls-stuff.com/kenya3.swf&quot;, NULL, NULL, SW_SHOWNORMAL);
}
</code></pre>
<p>thx schon amal für die hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/454191</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/454191</guid><dc:creator><![CDATA[bLeaK]]></dc:creator><pubDate>Sat, 07 Feb 2004 23:36:09 GMT</pubDate></item><item><title><![CDATA[Reply to Mehrere Fenster öffnen on Sun, 08 Feb 2004 13:25:29 GMT]]></title><description><![CDATA[<p>Es gibt eine IE-Einstellung &quot;reuse open windows&quot; - deswegen wird nur ein Fenster geöffnet.</p>
<p>mit dem Parameter &quot;-new&quot; kann man einen neuen Prozeß (und damit ein neues Fenster) erzwingen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/454399</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/454399</guid><dc:creator><![CDATA[peterchen]]></dc:creator><pubDate>Sun, 08 Feb 2004 13:25:29 GMT</pubDate></item><item><title><![CDATA[Reply to Mehrere Fenster öffnen on Sun, 08 Feb 2004 14:26:17 GMT]]></title><description><![CDATA[<p>und wie bau ich den ungefähr ein? sry kenn mich da noch nicht so gut aus. bin erst beim lernen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/454446</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/454446</guid><dc:creator><![CDATA[bLeaK]]></dc:creator><pubDate>Sun, 08 Feb 2004 14:26:17 GMT</pubDate></item><item><title><![CDATA[Reply to Mehrere Fenster öffnen on Sun, 08 Feb 2004 14:51:30 GMT]]></title><description><![CDATA[<p>Mußt wahrscheinlich iexplore.exe explizit angeben (da die Option ja nur für den IE gilt). Hat den Nachteil, daß die Seiten nicht mehr mit dem Standardbrowsewr aufgehen</p>
<pre><code class="language-cpp">ShellExecute(m_hWnd, &quot;open&quot;, &quot;iexplore.exe&quot;, &quot;-new http://www.very.de&quot;, NULL, SW_SHOWNORMAL);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/454472</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/454472</guid><dc:creator><![CDATA[peterchen]]></dc:creator><pubDate>Sun, 08 Feb 2004 14:51:30 GMT</pubDate></item><item><title><![CDATA[Reply to Mehrere Fenster öffnen on Sun, 08 Feb 2004 20:54:46 GMT]]></title><description><![CDATA[<p>danke funktioniert <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/454761</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/454761</guid><dc:creator><![CDATA[bLeaK]]></dc:creator><pubDate>Sun, 08 Feb 2004 20:54:46 GMT</pubDate></item></channel></rss>