<?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 : Can you hide forms on TabbedWorkspace</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Can you hide forms on TabbedWorkspace]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 04:03:38 +0000</pubDate>
  <lastBuildDate>Mon, 21 Jan 2008 11:57:33 +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=9277</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[Can you hide forms on TabbedWorkspace : here is the answer from technical...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30357&amp;title=can-you-hide-forms-on-tabbedworkspace#30357</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3644">kdube</a><br /><strong>Subject:</strong> 9277<br /><strong>Posted:</strong> 21 January 2008 at 11:57am<br /><br />here is the answer from technical support:<DIV>&nbsp;</DIV><DIV>You can use TabControlItem.Visible propery to hide tab.<BR><BR>call it after you add form or in Workspace_NewItem event:<BR><BR>to hide after you show form<BR><BR>&nbsp;&nbsp;frmD.Show<BR>&nbsp;&nbsp;Workspace.Refresh<BR>&nbsp;&nbsp;Workspace.FindItem(frmD.hwnd).Visible = False<BR><BR><BR>to hide in event:<BR>Private Sub Workspace_NewItem(ByVal Item As XtremeCommandBars.ITabControlItem)<BR>&nbsp;&nbsp;Item.Visible = False<BR>End Sub&nbsp;&nbsp; </DIV>]]>
   </description>
   <pubDate>Mon, 21 Jan 2008 11:57:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30357&amp;title=can-you-hide-forms-on-tabbedworkspace#30357</guid>
  </item> 
  <item>
   <title><![CDATA[Can you hide forms on TabbedWorkspace : Actually I didn&amp;#039;t quite tell...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30177&amp;title=can-you-hide-forms-on-tabbedworkspace#30177</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3644">kdube</a><br /><strong>Subject:</strong> 9277<br /><strong>Posted:</strong> 16 January 2008 at 9:28am<br /><br />Actually I didn't quite tell you the correct situation... the forms that are showing up that I do not want to show up are actually just minimized icons (but are still mdi child windows) on my mdi application.&nbsp;&nbsp; So I think I have to keep them as MDI children.. but the question still remains is there a way to not show them in the tabbed folders...]]>
   </description>
   <pubDate>Wed, 16 Jan 2008 09:28:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30177&amp;title=can-you-hide-forms-on-tabbedworkspace#30177</guid>
  </item> 
  <item>
   <title><![CDATA[Can you hide forms on TabbedWorkspace : don&amp;#039;t make it an mdi child...you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30082&amp;title=can-you-hide-forms-on-tabbedworkspace#30082</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3626">hades</a><br /><strong>Subject:</strong> 9277<br /><strong>Posted:</strong> 13 January 2008 at 11:02pm<br /><br /><P>don't make it an mdi child...you should&nbsp;also set the Z order. if you still&nbsp;want it as a mdi child, try setting it from where you call it(manually&nbsp;using code).</P>]]>
   </description>
   <pubDate>Sun, 13 Jan 2008 23:02:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30082&amp;title=can-you-hide-forms-on-tabbedworkspace#30082</guid>
  </item> 
  <item>
   <title><![CDATA[Can you hide forms on TabbedWorkspace : Hi, I am working with the Shortcut...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30042&amp;title=can-you-hide-forms-on-tabbedworkspace#30042</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3644">kdube</a><br /><strong>Subject:</strong> 9277<br /><strong>Posted:</strong> 10 January 2008 at 11:53am<br /><br />Hi, I am working with the Shortcut Bar and Command Bar on an MDI Application.&nbsp; I am using the CommandBar to show a tabbed MDI interface <DIV>&nbsp;</DIV><DIV>(using)</DIV><DIV>&nbsp;</DIV><DIV>Set Workspace = Me.CommandBars1.ShowTabWorkspace(True)</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>this works OK however because I have a couple of forms on my shortcut bar (that are used for navigation),&nbsp;the tabbed workspace shows these forms as on its tabbed pane.&nbsp; </DIV><DIV>&nbsp;</DIV><DIV>I want to not show these forms as tabs on the workspace... is this possible?</DIV><DIV>&nbsp;</DIV><DIV>Thanks in Advance</DIV><DIV>&nbsp;</DIV><DIV>Kevin Dube</DIV>]]>
   </description>
   <pubDate>Thu, 10 Jan 2008 11:53:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9277&amp;PID=30042&amp;title=can-you-hide-forms-on-tabbedworkspace#30042</guid>
  </item> 
 </channel>
</rss>