<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : SDI + Window selector = weird</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : SDI + Window selector = weird]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 19:28:05 +0000</pubDate>
  <lastBuildDate>Fri, 25 Jul 2008 01:44:06 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=11494</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[SDI + Window selector = weird : Hello,  Agree. If HideClient...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38877&amp;title=sdi-window-selector-weird#38877</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 11494<br /><strong>Posted:</strong> 25 July 2008 at 1:44am<br /><br />Hello,<DIV>&nbsp;</DIV><DIV>Agree. If HideClient is TRUE, ActiveFiles will be removed. </DIV><DIV>Thanks.</DIV>]]>
   </description>
   <pubDate>Fri, 25 Jul 2008 01:44:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38877&amp;title=sdi-window-selector-weird#38877</guid>
  </item> 
  <item>
   <title><![CDATA[SDI + Window selector = weird : Oleg, what do you suggest for...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38855&amp;title=sdi-window-selector-weird#38855</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 11494<br /><strong>Posted:</strong> 24 July 2008 at 12:05pm<br /><br />Oleg, what do you suggest for this? Shouldn't the whole else-statement be removed?]]>
   </description>
   <pubDate>Thu, 24 Jul 2008 12:05:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38855&amp;title=sdi-window-selector-weird#38855</guid>
  </item> 
  <item>
   <title><![CDATA[SDI + Window selector = weird : Very much agreed. It might have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38582&amp;title=sdi-window-selector-weird#38582</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3717">Smucker</a><br /><strong>Subject:</strong> 11494<br /><strong>Posted:</strong> 19 July 2008 at 5:41pm<br /><br />Very much agreed. It might have a use when HideClient(FALSE) (to set focus to the client window), but has none when HideClient(TRUE), and looks particularly strange.<br><br>]]>
   </description>
   <pubDate>Sat, 19 Jul 2008 17:41:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38582&amp;title=sdi-window-selector-weird#38582</guid>
  </item> 
  <item>
   <title><![CDATA[SDI + Window selector = weird : I have an SDI-application where...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38579&amp;title=sdi-window-selector-weird#38579</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 11494<br /><strong>Posted:</strong> 19 July 2008 at 12:39pm<br /><br /><DIV>I have an SDI-application where only panes are being used. Hence, no documents/views!&nbsp;When I press Ctrl+Tab I get this weird entry under "Active Files". Why show the frame name there?</DIV><DIV>&nbsp;</DIV><DIV>The code that causes this lies in <FONT color=#040004 size=2>CXTPDockingPaneWindowSelect</FONT><FONT size=2>::</FONT><FONT color=#040004 size=2>Reposition</FONT><FONT size=2>():</FONT></DIV><DIV>&nbsp;</DIV><DIV>else if (!hWndClient)<BR>{<BR>&nbsp;&nbsp;&nbsp; CItem* pItem = new CItem;<BR>&nbsp;&nbsp;&nbsp; pItem-&gt;hWndFrame = m_pManager-&gt;GetSite()-&gt;GetSafeHwnd();<BR>&nbsp;&nbsp;&nbsp; pItem-&gt;type = <strong>itemSDIFrame</strong>;</DIV><P>&nbsp;&nbsp;&nbsp; pItem-&gt;rc = CRect(x, y, x + nItemWidth, y + nItemHeight);</P><P>&nbsp;&nbsp;&nbsp; pItem-&gt;nIndex = (int)<strong>m_arrItems.Add(pItem)</strong>;<BR>&nbsp;&nbsp;&nbsp; pItem-&gt;nColumn = nColumn;<BR>&nbsp;&nbsp;&nbsp; pItem-&gt;nRow = nRow;</P><P>&nbsp;&nbsp;&nbsp; if (m_pSelected == NULL)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pSelected = pItem;</P><P>&nbsp;&nbsp;&nbsp; m_nFirstFile++;<BR>}<BR></P><DIV>Q:</DIV><DIV>To me, this looks like a bug. Why would you want to show the CMainFrame when selecting window in an SDI? In any case, it should be possible to disable this!</DIV><DIV>&nbsp;</DIV><DIV>Perhaps HideClient(TRUE) should also hide it from the window selector?</DIV>]]>
   </description>
   <pubDate>Sat, 19 Jul 2008 12:39:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11494&amp;PID=38579&amp;title=sdi-window-selector-weird#38579</guid>
  </item> 
 </channel>
</rss>