<?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[child-window bei MDI-anwendung]]></title><description><![CDATA[<p>HALL0.</p>
<p>bei der vc++2005 professional edition kommt es bei der ausführung einer vom MFC erstellten MDI-anwendung im startmodus zur erstellung eines child-windows. wie kann ich diese voreinstellung entfernen? (will am anfang also kein child-window angezeigt bekommen)</p>
<p>DANKE.<br />
STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/165002/child-window-bei-mdi-anwendung</link><generator>RSS for Node</generator><lastBuildDate>Fri, 31 Jul 2026 07:29:27 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/165002.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 14 Nov 2006 15:26:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to child-window bei MDI-anwendung on Tue, 14 Nov 2006 15:26:28 GMT]]></title><description><![CDATA[<p>HALL0.</p>
<p>bei der vc++2005 professional edition kommt es bei der ausführung einer vom MFC erstellten MDI-anwendung im startmodus zur erstellung eines child-windows. wie kann ich diese voreinstellung entfernen? (will am anfang also kein child-window angezeigt bekommen)</p>
<p>DANKE.<br />
STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1174628</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1174628</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Tue, 14 Nov 2006 15:26:28 GMT</pubDate></item><item><title><![CDATA[Reply to child-window bei MDI-anwendung on Wed, 15 Nov 2006 07:34:39 GMT]]></title><description><![CDATA[<p>Es wird ja ein CCommandLineInfo Objekt gefüllt. In diesem steht m_nShellCommand normalerweise auf FileOpen. Setze den Wert auf FileNothing.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1174891</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1174891</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 15 Nov 2006 07:34:39 GMT</pubDate></item><item><title><![CDATA[Reply to child-window bei MDI-anwendung on Wed, 15 Nov 2006 07:41:46 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">BEGIN_MESSAGE_MAP(CMDIApp, CWinApp)
	ON_COMMAND(ID_APP_ABOUT, &amp;CMDIApp::OnAppAbout)
	// Standard file based document commands
	ON_COMMAND(ID_FILE_NEW, &amp;CWinApp::OnFileNew)
	ON_COMMAND(ID_FILE_OPEN, &amp;CWinApp::OnFileOpen)
	// Standard print setup command
	ON_COMMAND(ID_FILE_PRINT_SETUP, &amp;CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
</code></pre>
<p>danke.<br />
meintest du in diesem abschnitt? ich kann nämlich ansonsten nirgends 'FileOpen' in diesem projekt finden <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1174898</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1174898</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Wed, 15 Nov 2006 07:41:46 GMT</pubDate></item><item><title><![CDATA[Reply to child-window bei MDI-anwendung on Wed, 15 Nov 2006 13:08:09 GMT]]></title><description><![CDATA[<p>Nein in InitInstance! Dor wird ein CCommandInfo angelegt geparst und ausgeführt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175175</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175175</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Wed, 15 Nov 2006 13:08:09 GMT</pubDate></item><item><title><![CDATA[Reply to child-window bei MDI-anwendung on Thu, 16 Nov 2006 02:15:12 GMT]]></title><description><![CDATA[<p>hi MARTIN.</p>
<p>danke für deine hilfe. ich finde es echt schwer, wenn man solche kleinen probleme hat, die passende lösung im netz oder irgendwelchen hilfen zu finden!</p>
<p>deinen vorschlage habe ich nun wie folgt umgesetzt:</p>
<pre><code class="language-cpp">CCommandLineInfo cmdInfo;
	cmdInfo.FileNothing;
	ParseCommandLine(cmdInfo);
</code></pre>
<p>leider geht aber immer noch ein fenster auf. was habe ich falsch gemacht?</p>
<p>DANKE.<br />
STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175611</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175611</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Thu, 16 Nov 2006 02:15:12 GMT</pubDate></item><item><title><![CDATA[Reply to child-window bei MDI-anwendung on Thu, 16 Nov 2006 10:20:01 GMT]]></title><description><![CDATA[<p>Ein bischen Handbuch lesen ist doch drin oder? Zudem habe ich doch alles geschrieben oder? Stichworte: CCommandLineInfo, m_nShellCommand, FileNothing <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /></p>
<pre><code class="language-cpp">CCommandLineInfo cmdInfo;
cmdInfo.nShellCommand = CCommandLineInfo::FileNothing;
ParseCommandLine(cmdInfo);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1175777</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175777</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Thu, 16 Nov 2006 10:20:01 GMT</pubDate></item><item><title><![CDATA[Reply to child-window bei MDI-anwendung on Fri, 17 Nov 2006 01:35:22 GMT]]></title><description><![CDATA[<p>danke erstmal für deine hilfe. hatte natürlich auch in der hilfe nachgeschaut, habe allerdings zuvor deinen hinweis über 'm_nShellCommand' gekonnt übersehen. sorry!</p>
<p>STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1176236</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1176236</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Fri, 17 Nov 2006 01:35:22 GMT</pubDate></item></channel></rss>