<?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[Alle Internetexplorer Fenster schliessen]]></title><description><![CDATA[<p>Ich versuch in regelmäßigen Abständen, alle Internet Explorer Fenster zu schliessen. Leider klappt dies nicht wie gewollt. Ich hab es mit dem Handle versucht aber ohne Erfolg(wahrscheinlich weil ich kein vollen Namen habe.</p>
<p>Gibt es eine andere Mäglichkeit alle Fenster vom Internetexpolorer zu schliessen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/232949/alle-internetexplorer-fenster-schliessen</link><generator>RSS for Node</generator><lastBuildDate>Thu, 09 Apr 2026 02:50:09 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/232949.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 29 Jan 2009 11:24:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Alle Internetexplorer Fenster schliessen on Thu, 29 Jan 2009 11:24:54 GMT]]></title><description><![CDATA[<p>Ich versuch in regelmäßigen Abständen, alle Internet Explorer Fenster zu schliessen. Leider klappt dies nicht wie gewollt. Ich hab es mit dem Handle versucht aber ohne Erfolg(wahrscheinlich weil ich kein vollen Namen habe.</p>
<p>Gibt es eine andere Mäglichkeit alle Fenster vom Internetexpolorer zu schliessen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1654286</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1654286</guid><dc:creator><![CDATA[vistaner]]></dc:creator><pubDate>Thu, 29 Jan 2009 11:24:54 GMT</pubDate></item><item><title><![CDATA[Reply to Alle Internetexplorer Fenster schliessen on Thu, 29 Jan 2009 19:45:42 GMT]]></title><description><![CDATA[<p>Dieser Thread wurde von Moderator/in <a href="http://www.c-plusplus.net/forum/profile-var-mode-is-viewprofile-and-u-is-437.html" rel="nofollow">Jansen</a> aus dem Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-2.html" rel="nofollow">VCL (C++ Builder)</a> in das Forum <a href="http://www.c-plusplus.net/forum/viewforum-var-f-is-4.html" rel="nofollow">WinAPI</a> verschoben.</p>
<p>Im Zweifelsfall bitte auch folgende Hinweise beachten:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39405.html" rel="nofollow">C/C++ Forum :: FAQ - Sonstiges :: Wohin mit meiner Frage?</a></p>
<p><em>Dieses Posting wurde automatisch erzeugt.</em></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1654611</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1654611</guid><dc:creator><![CDATA[C++ Forumbot]]></dc:creator><pubDate>Thu, 29 Jan 2009 19:45:42 GMT</pubDate></item><item><title><![CDATA[Reply to Alle Internetexplorer Fenster schliessen on Thu, 29 Jan 2009 19:50:31 GMT]]></title><description><![CDATA[<p>du könntest auf den Prozess iexplore.exe achten und den Internet Explorer damit schließen(z. B. mit TerminateProcess).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1654615</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1654615</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Thu, 29 Jan 2009 19:50:31 GMT</pubDate></item><item><title><![CDATA[Reply to Alle Internetexplorer Fenster schliessen on Fri, 30 Jan 2009 13:44:49 GMT]]></title><description><![CDATA[<p>Ich würd alle fenster mit <a href="http://msdn.microsoft.com/en-us/library/ms633497.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms633497.aspx</a> benutzen, und dann im callback halt iexplore rausfiltern mit strcmp.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1655027</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1655027</guid><dc:creator><![CDATA[blah123]]></dc:creator><pubDate>Fri, 30 Jan 2009 13:44:49 GMT</pubDate></item><item><title><![CDATA[Reply to Alle Internetexplorer Fenster schliessen on Fri, 30 Jan 2009 14:17:15 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">int _stdcall EnumWindowsProc( HWND hwnd, LPARAM lParam )
{

	string Window;
	char Buf[255];
	GetWindowText( hwnd, Buf, 255 );
	Window = Buf;
	if( Window.find( &quot;Firefox&quot; ) != Window.npos ) // oder internet explorer...
	{
		DWORD pID;
		GetWindowThreadProcessId( hwnd, &amp;pID );
		if( pID )
		{
			HANDLE hProcess = OpenProcess( PROCESS_TERMINATE, 0, pID );
			TerminateProcess( hProcess, 0 );
		}
	}

	return 1;
}

int main()
{
	EnumWindows( EnumWindowsProc, NULL );
	cin.ignore();
	cin.get();
}
</code></pre>
<p>Sowas wie das <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1655051</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1655051</guid><dc:creator><![CDATA[s91x]]></dc:creator><pubDate>Fri, 30 Jan 2009 14:17:15 GMT</pubDate></item><item><title><![CDATA[Reply to Alle Internetexplorer Fenster schliessen on Fri, 30 Jan 2009 14:55:09 GMT]]></title><description><![CDATA[<p>Achja, vor TerminateProcess() sollte man checken ob das handle valid ist!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1655064</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1655064</guid><dc:creator><![CDATA[s91x]]></dc:creator><pubDate>Fri, 30 Jan 2009 14:55:09 GMT</pubDate></item></channel></rss>