<?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[MDI Problem]]></title><description><![CDATA[<p>Hallo, alle zusammen...<br />
folgendes Problem,<br />
ich habe eine MDI Anwendung wo ich über dem Menü verschiedene Fenster öffne.<br />
Soweit so gut.<br />
Nun, wenn ich das gleiche Fenster ein zweites mal öffne, kommt ein Assertion Fehler (File=Wincore.cpp Line=628). <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /><br />
Die Fenstern öffne ich so...</p>
<pre><code class="language-cpp">Angebot.Create(IDD_ANGEBOT_DIALOG,NULL);
Angebot.ShowWindow(SW_SHOWNORMAL);
</code></pre>
<p>P.S. Sorry für mein deutsch, noch nicht so lange in Deutschland...</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/5836/mdi-problem</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 00:01:12 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/5836.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 20 May 2003 13:49:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MDI Problem on Tue, 20 May 2003 13:49:00 GMT]]></title><description><![CDATA[<p>Hallo, alle zusammen...<br />
folgendes Problem,<br />
ich habe eine MDI Anwendung wo ich über dem Menü verschiedene Fenster öffne.<br />
Soweit so gut.<br />
Nun, wenn ich das gleiche Fenster ein zweites mal öffne, kommt ein Assertion Fehler (File=Wincore.cpp Line=628). <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /><br />
Die Fenstern öffne ich so...</p>
<pre><code class="language-cpp">Angebot.Create(IDD_ANGEBOT_DIALOG,NULL);
Angebot.ShowWindow(SW_SHOWNORMAL);
</code></pre>
<p>P.S. Sorry für mein deutsch, noch nicht so lange in Deutschland...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28335</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28335</guid><dc:creator><![CDATA[sammy]]></dc:creator><pubDate>Tue, 20 May 2003 13:49:00 GMT</pubDate></item><item><title><![CDATA[Reply to MDI Problem on Tue, 20 May 2003 14:18:00 GMT]]></title><description><![CDATA[<p>Angebot.Create(IDD_ANGEBOT_DIALOG,NULL);<br />
Angebot.ShowWindow(SW_SHOWNORMAL);</p>
<p>WEnn das exakt zwei mal passiert wird es bei dem Create knallen. Das geht nur einmal. Wenn es bereits erstellt ist darf'st das nich mehr aufrufen.</p>
<p>SChaut es so aus:</p>
<p>Angebot.Create(IDD_ANGEBOT_DIALOG,NULL);<br />
Angebot.ShowWindow(SW_SHOWNORMAL);<br />
Angebot1.Create(IDD_ANGEBOT_DIALOG,NULL);<br />
Angebot1.ShowWindow(SW_SHOWNORMAL);</p>
<p>Müsste es gehen.</p>
<p>Wenn nicht schreib mal weiter Infos</p>
<p>thx</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28336</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28336</guid><dc:creator><![CDATA[Knuddlbaer]]></dc:creator><pubDate>Tue, 20 May 2003 14:18:00 GMT</pubDate></item><item><title><![CDATA[Reply to MDI Problem on Tue, 20 May 2003 14:19:00 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/184">@Knuddlbaer</a><br />
Schade, zu langsam <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/28338</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28338</guid><dc:creator><![CDATA[RenéG]]></dc:creator><pubDate>Tue, 20 May 2003 14:19:00 GMT</pubDate></item><item><title><![CDATA[Reply to MDI Problem on Tue, 20 May 2003 14:19:00 GMT]]></title><description><![CDATA[<p>Angebot.Create(IDD_ANGEBOT_DIALOG,NULL);<br />
Angebot.ShowWindow(SW_SHOWNORMAL);</p>
<p>Angebot2.Create(IDD_ANGEBOT_DIALOG,NULL);<br />
Angebot2.ShowWindow(SW_SHOWNORMAL);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28337</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28337</guid><dc:creator><![CDATA[RenéG]]></dc:creator><pubDate>Tue, 20 May 2003 14:19:00 GMT</pubDate></item><item><title><![CDATA[Reply to MDI Problem on Tue, 20 May 2003 14:28:00 GMT]]></title><description><![CDATA[<p>In meiner Programm ist das so dass ich nicht weiß wie oft das Fenster geöffnet wird. Ich dachte gerade dass, bevor ich mit Create das Fenster öffne, vielleicht überprufen sollte ob das Fenster bereits geöffnet ist. Und wenn ja einfach das Fenster ins Vordergrund bringe... Leider bin ich ich ein bluttige Anfänger und weiß nicht wie ich das realisieren sollte.Kann mir vielleicht jemanden helfen???</p>
<p>Danke im voraus...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28339</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28339</guid><dc:creator><![CDATA[sammy]]></dc:creator><pubDate>Tue, 20 May 2003 14:28:00 GMT</pubDate></item><item><title><![CDATA[Reply to MDI Problem on Wed, 21 May 2003 09:22:00 GMT]]></title><description><![CDATA[<p>Kann mir keiner helfen??? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/28340</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28340</guid><dc:creator><![CDATA[sammy]]></dc:creator><pubDate>Wed, 21 May 2003 09:22:00 GMT</pubDate></item><item><title><![CDATA[Reply to MDI Problem on Wed, 21 May 2003 09:59:00 GMT]]></title><description><![CDATA[<p>Erzeuge doch beim Erstellen einen Zeiger auf Dein Object den Du dann auf NULL im Bedarfsfall abprügen kannst.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/28341</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/28341</guid><dc:creator><![CDATA[AnTri]]></dc:creator><pubDate>Wed, 21 May 2003 09:59:00 GMT</pubDate></item></channel></rss>