<?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[Popup-Window verschieben]]></title><description><![CDATA[<p>Moin,<br />
hab mal ne kurze Frage an alle... ich hab hier für ein Trainermenu ein kleines Intro innerhalb eine Popup-Windows programmiert, welches beim Erstaufruf fest in der Mitte des Bildschirms platziert wird. Nu möchte ich das Ding allerdings doch per Maus auf dem Screen verschiebbar machen, gibt´s da eine einfache Möglichkeit für oder muss ich in der Windowproc selbst mittels WM_LBUTTONCLICK &amp; WM_MOUSEMOVE mir eine Routine programmieren die das verschieben übernimmt???</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/86891/popup-window-verschieben</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 16:35:26 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/86891.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 23 Sep 2004 16:40:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Popup-Window verschieben on Thu, 23 Sep 2004 16:40:27 GMT]]></title><description><![CDATA[<p>Moin,<br />
hab mal ne kurze Frage an alle... ich hab hier für ein Trainermenu ein kleines Intro innerhalb eine Popup-Windows programmiert, welches beim Erstaufruf fest in der Mitte des Bildschirms platziert wird. Nu möchte ich das Ding allerdings doch per Maus auf dem Screen verschiebbar machen, gibt´s da eine einfache Möglichkeit für oder muss ich in der Windowproc selbst mittels WM_LBUTTONCLICK &amp; WM_MOUSEMOVE mir eine Routine programmieren die das verschieben übernimmt???</p>
]]></description><link>https://www.c-plusplus.net/forum/post/613727</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/613727</guid><dc:creator><![CDATA[Matze76]]></dc:creator><pubDate>Thu, 23 Sep 2004 16:40:27 GMT</pubDate></item><item><title><![CDATA[Reply to Popup-Window verschieben on Thu, 23 Sep 2004 17:00:05 GMT]]></title><description><![CDATA[<p><a href="http://www.c-plusplus.net/forum/viewtopic.php?t=61479" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=61479</a> (nur Frage 1)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/613740</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/613740</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Thu, 23 Sep 2004 17:00:05 GMT</pubDate></item><item><title><![CDATA[Reply to Popup-Window verschieben on Thu, 23 Sep 2004 17:11:07 GMT]]></title><description><![CDATA[<p>Ich hab mal sowas ähnliches in nem VisualBasic Forum gesehe (ungetestet):</p>
<pre><code class="language-cpp">case WM_LBUTTONDOWN:
   ReleaseCapture();
   SendMessage(handle,WM_NCLBUTTONDOWN,HTCAPTION,0);
   break;
</code></pre>
<p>Man veräppelt scheinbar die winapi quasi und simuliert das drücken der linken maustaste auf die titelzeile, selbst wenn das fenster gar keine titelzeile hat <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=";D"
      alt="😉"
    /></p>
<p>(Edit: Hab scheinbar extrem langsam geschrieben ;D)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/613752</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/613752</guid><dc:creator><![CDATA[geeky]]></dc:creator><pubDate>Thu, 23 Sep 2004 17:11:07 GMT</pubDate></item><item><title><![CDATA[Reply to Popup-Window verschieben on Thu, 23 Sep 2004 17:26:54 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/41">@Geeky</a>: Supersache das, Danke!! Funktioniert tatsächlich!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/613754</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/613754</guid><dc:creator><![CDATA[Matze76]]></dc:creator><pubDate>Thu, 23 Sep 2004 17:26:54 GMT</pubDate></item></channel></rss>