<?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[SDI-Anwendung,Titel ändern]]></title><description><![CDATA[<p>Hallo MFC- Profis,</p>
<p>wie kann ich den Titel und das Symbol auf der Titelleiste einer SDI-Anwendung<br />
ändern?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/79195/sdi-anwendung-titel-ändern</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 05:23:19 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/79195.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 08 Jul 2004 16:32:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to SDI-Anwendung,Titel ändern on Thu, 08 Jul 2004 16:32:56 GMT]]></title><description><![CDATA[<p>Hallo MFC- Profis,</p>
<p>wie kann ich den Titel und das Symbol auf der Titelleiste einer SDI-Anwendung<br />
ändern?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/556267</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/556267</guid><dc:creator><![CDATA[helen]]></dc:creator><pubDate>Thu, 08 Jul 2004 16:32:56 GMT</pubDate></item><item><title><![CDATA[Reply to SDI-Anwendung,Titel ändern on Thu, 08 Jul 2004 17:35:26 GMT]]></title><description><![CDATA[<p>Ersteres kannst du mit CDocument::SetTitle machen,<br />
und in den Resourcen kannst du das Icon ändern.</p>
<p>Devil</p>
]]></description><link>https://www.c-plusplus.net/forum/post/556316</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/556316</guid><dc:creator><![CDATA[phlox81]]></dc:creator><pubDate>Thu, 08 Jul 2004 17:35:26 GMT</pubDate></item><item><title><![CDATA[Reply to SDI-Anwendung,Titel ändern on Fri, 09 Jul 2004 06:54:07 GMT]]></title><description><![CDATA[<p>Titel setzen ebenso in der C....App<br />
in InitInstance() mit</p>
<pre><code class="language-cpp">m_pMainWnd-&gt;SetWindowText(&quot;Dein Titel&quot;);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/556539</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/556539</guid><dc:creator><![CDATA[Gerhardtgerhardt]]></dc:creator><pubDate>Fri, 09 Jul 2004 06:54:07 GMT</pubDate></item><item><title><![CDATA[Reply to SDI-Anwendung,Titel ändern on Fri, 09 Jul 2004 13:40:25 GMT]]></title><description><![CDATA[<p>Hallo MFC- Profis,</p>
<p>ich habe wieder ein Problem, das jemand mir bestimmt einfache<br />
Lösung brigt. Ich möchte die Zeichnungen von der SDI-Anwendung<br />
ins Word- Dokument kopieren. Ich kriege eine Fehlermeldung. Wenn ich die<br />
ignoriere, klappt es kopieren. Was kann ich in dem Code falschgeschieben haben.</p>
<pre><code class="language-cpp">void CMySDIView::OnEditCopy() 
{
	// TODO: Code für Befehlsbehandlungsroutine hier einfügen
	CMetaFileDC copy;
	if (!copy.CreateEnhanced(NULL,NULL,NULL,NULL)) return;

	OnDraw(&amp;copy);
	HENHMETAFILE hMF = copy.CloseEnhanced();
	OpenClipboard();
	EmptyClipboard();
	SetClipboardData(CF_ENHMETAFILE, hMF);
	CloseClipboard();

}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/556895</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/556895</guid><dc:creator><![CDATA[Helen]]></dc:creator><pubDate>Fri, 09 Jul 2004 13:40:25 GMT</pubDate></item></channel></rss>