<?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[CSplitterWnd]]></title><description><![CDATA[<p>Hallo,<br />
ich versuche mich gerade an einem SplitterWindow, aber nichts passiert.</p>
<pre><code class="language-cpp">BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
{
	// TODO: Speziellen Code hier einfügen und/oder Basisklasse aufrufen
	m_pSplitter= new CSplitterWnd;
	m_pSplitter-&gt;CreateStatic(this, 1, 2);
	m_pSplitter-&gt;CreateView(0,0,RUNTIME_CLASS(CTreeView),CSize(1000,1000),pContext);
	m_pSplitter-&gt;CreateView(0,1,RUNTIME_CLASS(CEditView),CSize(1000,1000),pContext);
	m_pSplitter-&gt;RecalcLayout();
	return CFrameWnd::OnCreateClient(lpcs, pContext);
}
Hat einer Ahnung?
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/74031/csplitterwnd</link><generator>RSS for Node</generator><lastBuildDate>Sun, 26 Apr 2026 20:47:31 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/74031.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 16 May 2004 15:37:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CSplitterWnd on Sun, 16 May 2004 15:37:24 GMT]]></title><description><![CDATA[<p>Hallo,<br />
ich versuche mich gerade an einem SplitterWindow, aber nichts passiert.</p>
<pre><code class="language-cpp">BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
{
	// TODO: Speziellen Code hier einfügen und/oder Basisklasse aufrufen
	m_pSplitter= new CSplitterWnd;
	m_pSplitter-&gt;CreateStatic(this, 1, 2);
	m_pSplitter-&gt;CreateView(0,0,RUNTIME_CLASS(CTreeView),CSize(1000,1000),pContext);
	m_pSplitter-&gt;CreateView(0,1,RUNTIME_CLASS(CEditView),CSize(1000,1000),pContext);
	m_pSplitter-&gt;RecalcLayout();
	return CFrameWnd::OnCreateClient(lpcs, pContext);
}
Hat einer Ahnung?
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/521410</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521410</guid><dc:creator><![CDATA[CLoop]]></dc:creator><pubDate>Sun, 16 May 2004 15:37:24 GMT</pubDate></item><item><title><![CDATA[Reply to CSplitterWnd on Sun, 16 May 2004 16:01:34 GMT]]></title><description><![CDATA[<p>Also, ich habe das so gemacht (Bei Dir fehlt vielleich auch die () hinter dem new CSpliterWnd )</p>
<pre><code class="language-cpp">BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT /*lpcs*/,
	CCreateContext* pContext)
{

	VERIFY(m_wndSplitter.CreateStatic(this, 1, 2));
	VERIFY(m_wndSplitter.CreateView(0,0,RUNTIME_CLASS(CDiaTree),CSize(200,500),pContext));
	VERIFY(m_wndSplitter.CreateView(0,1,RUNTIME_CLASS(CTestView),CSize(200,500),pContext));

//	SetActiveView(CWTestView);

	pTestView = (CTestView*) m_wndSplitter.GetPane(0,1);

	SetActiveView(pTestView,1);
</code></pre>
<p>Ich hoffe ich konnte Dir helfen!?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521426</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521426</guid><dc:creator><![CDATA[AnTri]]></dc:creator><pubDate>Sun, 16 May 2004 16:01:34 GMT</pubDate></item><item><title><![CDATA[Reply to CSplitterWnd on Sun, 16 May 2004 16:19:12 GMT]]></title><description><![CDATA[<p>Klappt immer noch nicht,<br />
ich hab sogar CTreeView und CEditView durch abgeleitete Klassen ersetzt.<br />
Läuft aber nicht. <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/521441</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521441</guid><dc:creator><![CDATA[CLoop]]></dc:creator><pubDate>Sun, 16 May 2004 16:19:12 GMT</pubDate></item><item><title><![CDATA[Reply to CSplitterWnd on Sun, 16 May 2004 17:21:18 GMT]]></title><description><![CDATA[<p>Kommt bei Dir eine Fehlermeldung, oder passiert einfach überhaupt nichts?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521486</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521486</guid><dc:creator><![CDATA[AnTri]]></dc:creator><pubDate>Sun, 16 May 2004 17:21:18 GMT</pubDate></item><item><title><![CDATA[Reply to CSplitterWnd on Sun, 16 May 2004 17:36:58 GMT]]></title><description><![CDATA[<p>Ich hab noch ne Idee. Setzte mal &quot;return&quot; auf TRUE!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521495</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521495</guid><dc:creator><![CDATA[AnTri]]></dc:creator><pubDate>Sun, 16 May 2004 17:36:58 GMT</pubDate></item><item><title><![CDATA[Reply to CSplitterWnd on Sun, 16 May 2004 17:38:38 GMT]]></title><description><![CDATA[<p>Ich hab noch ne Idee. Setzte mal &quot;return&quot; auf TRUE!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521496</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521496</guid><dc:creator><![CDATA[AnTri]]></dc:creator><pubDate>Sun, 16 May 2004 17:38:38 GMT</pubDate></item><item><title><![CDATA[Reply to CSplitterWnd on Sun, 16 May 2004 17:42:59 GMT]]></title><description><![CDATA[<p>Ich hab noch ne Idee. Setzte mal &quot;return&quot; auf TRUE!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521501</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521501</guid><dc:creator><![CDATA[AnTri]]></dc:creator><pubDate>Sun, 16 May 2004 17:42:59 GMT</pubDate></item></channel></rss>