<?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[IsSystemmodal]]></title><description><![CDATA[<p>Hallo!<br />
Wie kann ich ein Fenster die keine Titelleiste haben erkennen ?<br />
Oder noch besser:<br />
Wie hohle ich mir alle Systemmodale Fenster ? (den hwnd wert)</p>
<pre><code class="language-cpp">EnumWindows(AllWindows,0);

BOOL CALLBACK AllWindows(HWND hwnd,LPARAM lParam)
{
    char tmp[101];

    if(!GetWindow(hwnd,GW_OWNER) &amp;&amp; IsWindowVisible(hwnd))
    {
        GetWindowText(hwnd,tmp,100);
        MessageBox(NULL,tmp,NULL,NULL);
    }
    return true;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/45440/issystemmodal</link><generator>RSS for Node</generator><lastBuildDate>Sat, 25 Apr 2026 22:18:22 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/45440.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 10 Aug 2003 14:41:41 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to IsSystemmodal on Sun, 10 Aug 2003 14:41:41 GMT]]></title><description><![CDATA[<p>Hallo!<br />
Wie kann ich ein Fenster die keine Titelleiste haben erkennen ?<br />
Oder noch besser:<br />
Wie hohle ich mir alle Systemmodale Fenster ? (den hwnd wert)</p>
<pre><code class="language-cpp">EnumWindows(AllWindows,0);

BOOL CALLBACK AllWindows(HWND hwnd,LPARAM lParam)
{
    char tmp[101];

    if(!GetWindow(hwnd,GW_OWNER) &amp;&amp; IsWindowVisible(hwnd))
    {
        GetWindowText(hwnd,tmp,100);
        MessageBox(NULL,tmp,NULL,NULL);
    }
    return true;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/328473</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/328473</guid><dc:creator><![CDATA[Razy]]></dc:creator><pubDate>Sun, 10 Aug 2003 14:41:41 GMT</pubDate></item></channel></rss>