<?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[Ermitteln wann das ParentFenster ein WM_ACTIVATE empfängt]]></title><description><![CDATA[<p>Hallo,</p>
<p>ja wieder Name schon sagt.</p>
<p>Gruß Ronny W</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/52532/ermitteln-wann-das-parentfenster-ein-wm_activate-empfängt</link><generator>RSS for Node</generator><lastBuildDate>Mon, 01 Jun 2026 00:21:50 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/52532.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 21 Oct 2003 06:38:50 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Ermitteln wann das ParentFenster ein WM_ACTIVATE empfängt on Tue, 21 Oct 2003 06:38:50 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ja wieder Name schon sagt.</p>
<p>Gruß Ronny W</p>
]]></description><link>https://www.c-plusplus.net/forum/post/376192</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/376192</guid><dc:creator><![CDATA[Ronny W]]></dc:creator><pubDate>Tue, 21 Oct 2003 06:38:50 GMT</pubDate></item><item><title><![CDATA[Reply to Ermitteln wann das ParentFenster ein WM_ACTIVATE empfängt on Tue, 21 Oct 2003 09:19:00 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>die DefWindowProc oder WindowProc des Fensters überschreiben und da hinein:</p>
<pre><code class="language-cpp">if (message == WM_ACTIVATE)
{
	WORD fActive = LOWORD(wParam);
	WORD fMinimized = HIWORD(wParam);

	CString str_fActive = &quot;&quot;;
	switch (fActive)
	{
		case WA_ACTIVE	  : str_fActive = &quot;Aktiviert durch Methode oder Keyboard\n&quot;; break;
		case WA_CLICKACTIVE : str_fActive = &quot;Aktiviert durch Mausklick\n&quot;; break;
		case WA_INACTIVE	: str_fActive = &quot;Deaktiviert\n&quot;; break;
	}

	TRACE(str_fActive);
}
</code></pre>
<p>Gruss mathi</p>
]]></description><link>https://www.c-plusplus.net/forum/post/376308</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/376308</guid><dc:creator><![CDATA[mathi]]></dc:creator><pubDate>Tue, 21 Oct 2003 09:19:00 GMT</pubDate></item><item><title><![CDATA[Reply to Ermitteln wann das ParentFenster ein WM_ACTIVATE empfängt on Tue, 21 Oct 2003 10:01:15 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>aber ich muss das durch das ActiveX erfahren und darf den Programmcode des ParentFensters nicht ändern.</p>
<p>Gruß Ronny</p>
]]></description><link>https://www.c-plusplus.net/forum/post/376362</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/376362</guid><dc:creator><![CDATA[Ronny W]]></dc:creator><pubDate>Tue, 21 Oct 2003 10:01:15 GMT</pubDate></item></channel></rss>